This article is tagged with:
Sql limit order by
and mysql
sql limit order by
SELECT expressions
FROM tables
[WHERE conditions]
[ORDER BY expression [ ASC | DESC ]]
LIMIT number_rows [ OFFSET offset_value ];
sql sort ascending limit
SELECT name
FROM column_names
ORDER BY name ASC
LIMIT 3;