Answers for "how can we select the last element from table in 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
2

select last row in sql

SELECT TOP 1 * FROM Table ORDER BY ID DESC
Posted by: Guest on June-09-2021

Code answers related to "how can we select the last element from table in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language