Answers for "Write an SQL query to show the last record from a table."

SQL
2

get last record in sql

SELECT * FROM TableName WHERE id=(SELECT max(id) FROM TableName);
Posted by: Guest on July-29-2021

Code answers related to "Write an SQL query to show the last record from a table."

Code answers related to "SQL"

Browse Popular Code Answers by Language