Answers for "how to choose the last row from select sql"

SQL
4

how to get last row of table in sql

mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
Posted by: Guest on June-07-2020
4

select last row in sql

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 choose the last row from select sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language