how to get latest data from table in sql code example
Example 1: how to get last row of table in sql
mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
Example 2: get latest record in sql
ex:
SELECT TOP 1 * FROM [TABLENAME] ORDER BY id DESC