Answers for "how to find the last value of a field in SQL"

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 "how to find the last value of a field in SQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language