Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Most Data Analytics Applied
00:00
5 left

Most Data Analytics Applied

MediumSQL · PostgreSQL

Problem

Tell me about the project where you applied the most data analytics, and what impact it had.

Using the provided project, analysis-run, and impact data, write a PostgreSQL query that identifies the project with the greatest completed analytics activity while reporting impact for every project.

Output

  1. One row per project with project_id, project_name, completed_analysis_count, and total_impact
  2. Include projects without analysis runs or impact records, treating missing totals as zero
  3. Order by completed analysis count descending, total impact descending, and project ID ascending

Schema

projects
ColumnTypeDescription
project_idPKINTUnique project identifier
project_nameVARCHAR(100)Project name
owner_teamVARCHAR(100)Team responsible for the project
completed_dateDATEDate the project was completed
analysis_runs
ColumnTypeDescription
run_idPKINTUnique analysis run identifier
project_idINTProject associated with the analysis run
run_dateDATEDate the analysis run occurred
statusVARCHAR(20)Analysis run status
project_impacts
ColumnTypeDescription
impact_idPKINTUnique impact record identifier
project_idINTProject associated with the impact
impact_dateDATEDate the impact was recorded
impact_typeVARCHAR(40)Type of measured impact
impact_valueDECIMAL(12,2)Numeric value of the impact
Tablesprojectsanalysis_runsproject_impacts
Interviewer

Your question is Most Data Analytics Applied. 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.