Project 12: Pricing Plans Sort
SQL Architect
Builds on these lessons
Query Task
Objective
ORDER BY sorts the result set. ASC (ascending, the default) sorts smallest/earliest first; DESC sorts largest/latest first.
You're given a plans table with columns id, name, and price.
Task: write a query that returns every column, sorted by price from lowest to highest.
query.sql
SELECT * FROM plans ORDER BY price ASC;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results