SQL QuestSQL Interview Questions › Conditional Logic

Movie Rating Tier Breakdown

MediumFreeQuerying BasicsConditional LogicAggregation & Grouping

Categorize movies into quality tiers: 'Classic' (rating >= 8), 'Good' (7–7.9), 'Average' (6–6.9), 'Poor' (below 6). For each tier show tier, movie_count, and avg_revenue (rounded to 1 decimal, ignoring NULLs). Sort by avg_revenue descending.

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

movies

idtitleyeargenreratingvotesrevenue_millionsruntimedirector
1Guardians of the Galaxy2014Action8.1757074333.13121James Gunn
2Prometheus2012Adventure7485820126.46124Ridley Scott
3Split2016Horror7.3157606138.12117M. Night Shyamalan

Expected output: 4 tiers with counts and average revenue

Hint

Use CASE WHEN in SELECT and GROUP BY the same expression. AVG(revenue_millions) automatically ignores NULLs

Concepts

SELECT CASE GROUP BY Aggregation CASE + GROUP BY

Practise the topic: SQL practice questions · CASE WHEN practice · GROUP BY exercises

In these company practice sets

Netflix · Snowflake

A SQL Quest challenge matched to patterns reported for these companies — not a question any of them has published.

Related questions

Genre Financial ReportMedium · FreeDepartment Compensation ReportMedium · FreePivot: Order Status by CountryMedium · FreeGenre Box Office ReportMedium · FreeFare Imputation AnalysisMedium · FreeUNION ALL Dedup: Cross-Dataset SearchMedium · Free

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