Sequence NODE_285
Easy

Sort & Limit Results

SQL
Technical Specification

Select the 10 most recently created users ordered by created_at descending.

Input/Output Samples
Input:users table
Output:Latest 10 users
Optimal Logic Path
SELECT *
FROM users
ORDER BY created_at DESC
LIMIT 10;
Architectural Deep-Dive
ORDER BY with LIMIT returns only the top N rows based on your sorting criteria.