Answers for "SQL SELECT LAST row id"

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
1

sql select last id

#Where the the column name is "ID" and table name is "tablename" and ID naming is increasing numerical value.
SELECT * 
FROM tablename
WHERE ID = (
    SELECT MAX(ID) 
  	FROM Table)
Posted by: Guest on July-29-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language