Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Deadlock and 3NF Basics
00:00
5 left

Deadlock and 3NF Basics

MediumSQL · PostgreSQL

Problem

They asked basic questions like what is deadlock, 3NF and how deadlock occurs and Projects

For the project portion, write a PostgreSQL query that summarizes currently active project assignments while excluding cancelled projects. Include projects with no matching active employees.

Output

  1. One row per non-cancelled project with project_name, status, active_member_count, allocated_hours, and budget_band.
  2. Treat missing assignment totals as zero and classify budgets as High, Medium, or Low.
  3. Order by budget descending, then project name ascending.

Schema

projects
ColumnTypeDescription
project_idPKINTUnique project identifier
project_nameVARCHAR(150)Project name
statusVARCHAR(30)Current project status
budgetDECIMAL(12,2)Approved project budget
employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(120)Employee full name
roleVARCHAR(80)Employee project role
emailVARCHAR(160)Employee work email
project_assignments
ColumnTypeDescription
assignment_idPKINTUnique assignment identifier
project_idINTReferenced project
employee_idINTReferenced employee
hours_allocatedDECIMAL(8,2)Hours allocated to the assignment
ended_atDATEAssignment end date, NULL when active
Tablesprojectsemployeesproject_assignments
Interviewer

Your question is Deadlock and 3NF Basics. 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.