sql select last rows 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: php sql last 10 rows
SELECT * FROM big_table ORDER BY A DESC LIMIT 10
mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
SELECT * FROM big_table ORDER BY A DESC LIMIT 10