Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Coding Assignment Approach
00:00
5 left

Coding Assignment Approach

EasySQL · PostgreSQL

Problem

Describe the approach you would use in a coding assignment.

For this SQL coding assignment, use the consultants and assignments tables to report completed assignment totals for every consultant. Include consultants with no completed assignments and treat missing billable hours as zero.

Output

  1. One row per consultant, including consultants without completed assignments.
  2. Columns: consultant_name, completed_assignments, and completed_hours.
  3. Sort by completed assignment count descending, then consultant name ascending.

Schema

consultants
ColumnTypeDescription
consultant_idPKINTUnique consultant identifier
consultant_nameVARCHAR(100)Consultant display name
departmentVARCHAR(100)Consultant department
assignments
ColumnTypeDescription
assignment_idPKINTUnique assignment identifier
consultant_idINTConsultant assigned to the work
assignment_nameVARCHAR(150)Assignment name
statusVARCHAR(30)Current assignment status
billable_hoursDECIMAL(8,2)Billable hours recorded for the assignment
Tablesconsultantsassignments
Interviewer

Your question is Coding Assignment Approach. 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.