Start · beginner · ~15 min · Guide 1 of 12
How to use this SQL path
SQL is read-first: master SELECT before writing mutations. Use SQLBolt or SQLite locally. Checkpoints ensure you can join and aggregate before touching transactions.
Path progress3%
Step 1 of 3
Pick a sandbox
SQLBolt in browser, or sqlite3 CLI with a sample .db file. Postgres later — syntax is 95% the same for basics.
Do this now
Complete SQLBolt lesson 1 today. Bookmark the site.
Was this step clear?
Chapter learning outcomes
- Sandbox setup
- Read before write
- Safety rituals for mutations
Clear these before you leave
Side quest
First query
SELECT * FROM users LIMIT 5; — save as queries/01_select.sql.