Answers for "mysql select first and last row in select"

SQL
1

mysql select last 10 rows

SELECT * FROM tableName ORDER BY col1 DESC LIMIT 10;
Posted by: Guest on August-13-2021
0

select first and last row mysql

(select *from DemoTable694 order by EmployeeId ASC LIMIT 1)
UNION
(select *from DemoTable694 order by EmployeeId DESC LIMIT 1);
Posted by: Guest on April-20-2021

Code answers related to "mysql select first and last row in select"

Code answers related to "SQL"

Browse Popular Code Answers by Language