Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Group By in SQL
00:00
5 left

Group By in SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query using GROUP BY to transform data as described in the prompt.

Use the supplied teams and work_logs tables. Include all teams and only work logs from 2025-01-01 through 2025-03-31.

Output

  1. One row per team, including teams without qualifying work logs
  2. Columns: team_name, log_count, total_hours, completed_hours, and open_hours
  3. Treat missing hour totals as zero
  4. Sort by team_name ascending

Schema

teams
ColumnTypeDescription
team_idPKINTUnique team identifier
team_nameVARCHAR(100)Team name
work_logs
ColumnTypeDescription
log_idPKINTUnique work log identifier
team_idINTReferenced team identifier
log_dateDATEDate of the work log
statusVARCHAR(20)Work log status
hoursNUMERIC(8,2)Logged hours
Tablesteamswork_logs
Interviewer

Your question is Group By in SQL. Start with the requirements and the two 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.