order_by_limit
📊 Sort and Limit Results​
Control result order with ORDER BY
and restrict rows with LIMIT
:
-- Latest users first, show only 5
SELECT * FROM users
ORDER BY created_at DESC
LIMIT 5;
Control result order with ORDER BY
and restrict rows with LIMIT
:
-- Latest users first, show only 5
SELECT * FROM users
ORDER BY created_at DESC
LIMIT 5;