Answers for "how to get the 10 most recent rows mysql"

SQL
1

mysql select last 10 rows

SELECT * FROM tableName ORDER BY col1 DESC LIMIT 10;
Posted by: Guest on August-13-2021

Code answers related to "how to get the 10 most recent rows mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language