Answers for "mysql select from table last 10 datys"

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 "mysql select from table last 10 datys"

Code answers related to "SQL"

Browse Popular Code Answers by Language