mysql query - select bottom n records -
mysql query - select bottom n records -
i have field id records:
1 2 3 . . 9 10
is there mysql query syntax select bottom 5 * table order id desc
?
8 7 6 5 4
thanks!
please seek running next query.
select column_name table_name order id desc limit 5;
mysql
Comments
Post a Comment