SQL Quest › SQL Interview Questions › Aggregation & Grouping
Full Survival Dashboard by Class
Build a complete class-level survival report. Show exactly these 6 columns, in this order: pclass, total (passenger count), survivors, survival_rate (%, 1 decimal), avg_fare (2 decimals), avg_age (1 decimal — AVG skips NULLs automatically). Order by pclass.
Solve it in the browser editor →
Runs on SQLite in your browser, graded against the expected result, no signup. A wrong answer gets a diagnosis, not just "incorrect".
Schema
passengers
| passenger_id | survived | pclass | name | sex | age | sibsp | parch | fare | embarked |
|---|---|---|---|---|---|---|---|---|---|
| 1 | 0 | 3 | Braund, Mr. Owen Harris | male | 22 | 1 | 0 | 7.25 | S |
| 2 | 1 | 1 | Cumings, Mrs. John Bradley | female | 38 | 1 | 0 | 71.28 | C |
| 3 | 1 | 3 | Heikkinen, Miss. Laina | female | 26 | 0 | 0 | 7.93 | S |
Expected output: 3 rows with full stats per class
Hint
Concepts
SELECT GROUP BY Aggregation ORDER BY
Practise the topic: SQL practice questions · GROUP BY exercises
In these company practice sets
A SQL Quest challenge matched to patterns reported for these companies — not a question any of them has published.
Related questions
Where would this cost you points in an interview?
Ten questions, no signup: a Skillmap across nine SQL skills and the one to fix first.
Take the readiness test