QueryForge
Read the query. Predict the rows. Then run it.
Open the query console →How it works
- Read the table and the query. A small table, a real SQL query — nothing hidden.
- Predict the result set. Pick which of the candidate results the query returns — rows and order both matter.
- Run to check. The engine runs the query and shows the true result — and reads it back clause by clause.
- Learn the trip-up. Every wrong option is a genuine misreading, so you see exactly which clause you skipped.
Meet the crew — the four clauses, and the one habit
- Filo —
WHERE: keeps only the rows that pass the test, drops the rest. - Sorel —
ORDER BY: arranges the rows in order (andDESCflips it high→low). - Sole —
DISTINCT: keeps one of each kind, folds the repeats away. - Capp —
LIMIT: takes just the first few, after everything else is done. - Delia — the habit: read the query and predict the result before you run it. That is how you catch a bug before it ships.