Answers for "select all but last row in mysql"

SQL
7

mysql get last row

SELECT fields FROM table ORDER BY id DESC LIMIT 1;
Posted by: Guest on March-04-2020
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 "select all but last row in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language