Tutorials
Seaquel includes a built-in SQL curriculum that teaches you from the basics through advanced topics. Every lesson runs against a practice database — no external setup needed.
Accessing tutorials
Section titled “Accessing tutorials”- Open the sidebar and select SQL Sandbox.
- Or press
Cmd+K(Mac) /Ctrl+K(Windows/Linux) and search for “SQL Sandbox”.
Curriculum
Section titled “Curriculum”The tutorials cover these topics in order:
- Introduction to SQL — what databases are, basic terminology
- SELECT statements — retrieving data from tables
- WHERE clauses — filtering rows with conditions
- JOINs — combining data from multiple tables (INNER, LEFT, RIGHT, FULL)
- GROUP BY and aggregates — COUNT, SUM, AVG, MIN, MAX
- HAVING clauses — filtering grouped results
- ORDER BY — sorting output
- Subqueries — nesting queries inside queries
- Window functions — ROW_NUMBER, RANK, running totals
- Common Table Expressions — writing readable queries with CTEs
How lessons work
Section titled “How lessons work”Each lesson introduces a concept with a brief explanation, then presents progressive challenges. You write SQL in the editor, and Seaquel validates your queries in real time using SQL AST parsing — it checks the structure of your query, not just the output.
Challenges build on each other within a lesson. Complete one to unlock the next.
Progress
Section titled “Progress”Your progress is saved automatically. Pick up where you left off any time.