Answers for "mysql get first and last record only"

SQL
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 get first and last record only"

Code answers related to "SQL"

Browse Popular Code Answers by Language