Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Writing a Complex SQL Query
00:00
5 left

Writing a Complex SQL Query

MediumSQL · PostgreSQL

Problem

Can you provide an example of a complex SQL query you wrote and explain its purpose?

Use the provided relational tables to produce a representative example. The query should summarize qualifying analyst activity and make the purpose of each major operation clear.

Output

  1. One row per analyst and dataset with at least two query runs from 2025 onward.
  2. Return dataset_name, analyst_name, successful_runs, total_runs, success_rate_pct, latest_success_at, and dataset_rank.
  3. Rank analysts within each dataset by success rate, then successful runs, descending. Sort by dataset name, rank, and analyst name.

Schema

analysts
ColumnTypeDescription
analyst_idPKINTUnique analyst identifier
analyst_nameVARCHAR(100)Analyst display name
query_runs
ColumnTypeDescription
run_idPKINTUnique query run identifier
analyst_idINTAnalyst who initiated the run
dataset_idINTDataset queried by the run
statusVARCHAR(20)Run outcome
started_atDATERun start date
runtime_secondsINTElapsed runtime in seconds
datasets
ColumnTypeDescription
dataset_idPKINTUnique dataset identifier
dataset_nameVARCHAR(120)Dataset display name
dataset_typeVARCHAR(40)Dataset classification
Tablesanalystsquery_runsdatasets
Interviewer

Your question is Writing a Complex SQL Query. Start with the requirements and the three tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.