A · Query · beginner · Gate · Week 3–4 · Checkpoint 5 of 12
Checkpoint A — SELECT & JOINs
Before aggregations and mutations, prove you can read relational data with filters and joins. Fix gaps before Phase B.
Path progress36%
Step 1 of 3
Pass criteria
All six must be true. Fix failures before GROUP BY chapter.
- 10+ saved queries in sql-notes/queries/ with descriptive filenames
- SCHEMA.md documents all sandbox tables and relationships
- WHERE query with AND/OR, NULL check, and LIKE pattern
- INNER JOIN and LEFT JOIN each used correctly
- Anti-join query: rows in A with no match in B (LEFT JOIN + IS NULL)
- Can draw a 3-table ER diagram and explain join keys aloud
Do this now
Audit sql-notes repo. Mark pass/fail in README.
Was this step clear?
Chapter learning outcomes
- Read-path self-check
Clear these before you leave
Side quest
QA oracle query
Write query verifying: every order has a valid customer_id. What result means bug?