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

SQL
1

mysql select last 10 rows

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

select last row mysql

SELECT
  (SELECT * FROM tableName ORDER BY col1 LIMIT 1)        AS first,
  (SELECT * FROM tableName ORDER BY col1 DESC LIMIT 1)   AS last
;
Posted by: Guest on April-20-2021

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

Code answers related to "SQL"

Browse Popular Code Answers by Language