Answers for "sql get the last record and if the record is old than get the old"

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 "sql get the last record and if the record is old than get the old"

Code answers related to "SQL"

Browse Popular Code Answers by Language