SQL QuestSQL Interview Questions › Subqueries & CTEs

Island Length Classification

HardProQuerying BasicsSubqueries & CTEsWindow FunctionsAggregation & GroupingConditional Logic

Extend gaps-and-islands: find consecutive date ranges (islands) in orders and classify each island by length. Show island_start, island_end, island_length (days), and island_type: 'flash' (1 day), 'burst' (2-3 days), 'streak' (4-7 days), 'marathon' (8+ days). Sort by island_start. This classification of consecutive patterns is asked at Meta and Uber for engagement analysis.

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

orders

order_idcustomer_idproductcategoryquantitypricetotalorder_datecountrystatus
11Laptop ProElectronics11299.991299.992024-01-15USAcompleted
22Wireless MouseElectronics249.9999.982024-01-16Canadacompleted
33Office ChairFurniture1349.99349.992024-01-17USAcompleted

Expected output: Jan 1-3: burst (3 days), Jan 10-15: streak (6 days)

Hint

This is a Pro challenge — the hint, the step-by-step tutor and the reference solution open in the app.

Concepts

SELECT CTE Window Functions ROW_NUMBER GROUP BY CASE DISTINCT Gaps and Islands + CASE

Practise the topic: SQL practice questions · CTE practice · Window function practice · GROUP BY exercises · CASE WHEN practice · Ranking function practice · Advanced SQL interview questions

In these company practice sets

Airbnb · Amazon · Databricks · Meta · Revolut · Snowflake · Uber

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

Related questions

Cumulative Distinct Customers Over TimeHard · FreeRunning Total RevenueHard · FreeYear-over-Year GrowthHard · Free7-Day Rolling Revenue AverageHard · FreeMulti-CTE Revenue PipelineHard · FreeWealthy Survivor ProfileHard · Pro

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