DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Sorting — Example 189

Quick explanation + ready code for: Sorting.

SQL Sorting Back to examples
Back to language
Syntax: Sorting in SQL. ID: #189

Code

SELECT * FROM users ORDER BY created_at DESC LIMIT 20;

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.