Project 24: Upcoming Meetings Query
SQL Architect
Query Task
Objective
Review day: combine WHERE, ORDER BY, and LIMIT — everything from days 9, 12, and 13 — in a single query.
You're given an events table with columns id, title, event_date, and category.
Task: return title and event_date for rows where category is 'meeting', sorted by event_date ascending, limited to 10 rows.
query.sql
SELECT title, event_date FROM events WHERE category = 'meeting' ORDER BY event_date ASC LIMIT 10;
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results