MySQL Order by Desc Limit
SELECT * FROM table1 ORDER BY id DESC LIMIT 100
vettiyankan
SELECT * FROM table1 ORDER BY id DESC LIMIT 100
SELECT select_list
FROM table_name
ORDER BY order_expression
LIMIT offset, row_count;