SQL Quest › SQL Interview Questions › Conditional Logic
Calculated Columns
Create new calculated columns from existing data. For each movie, show title, runtime (in minutes), runtime_hours (runtime divided by 60, rounded to 1 decimal), and revenue_per_minute (revenue_millions divided by runtime, rounded to 2 decimals). Exclude movies with NULL revenue. Sort by revenue_per_minute descending. Limit to 10 rows.
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
| id | title | year | genre | rating | votes | revenue_millions | runtime | director |
|---|---|---|---|---|---|---|---|---|
| 1 | Guardians of the Galaxy | 2014 | Action | 8.1 | 757074 | 333.13 | 121 | James Gunn |
| 2 | Prometheus | 2012 | Adventure | 7 | 485820 | 126.46 | 124 | Ridley Scott |
| 3 | Split | 2016 | Horror | 7.3 | 157606 | 138.12 | 117 | M. Night Shyamalan |
Expected output: runtime_hours: 2.0, revenue_per_minute: 2.50
Hint
Concepts
SELECT Expressions ROUND
Practise the topic: SQL practice questions · CASE WHEN practice
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