Answers for "how to select the last 10 rows in sql"

SQL
6

how to get last row of table in sql

mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
Posted by: Guest on June-07-2020
0

sql last 3 rows

select * from news
order by id DESC LIMIT 3
Posted by: Guest on January-10-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language