Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Employee and Customer Join

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Employee and Customer Join. Start with the requirements and the two tables on the right.

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.

Problem

ISS STOXX uses employee numbers to identify account ownership in its customer operations data. Write a PostgreSQL query that joins the employee and customer tables to show active customer assignments while retaining employees who have no active customer.

Requirements

  1. Use a LEFT JOIN on employee.employee_no = customer.employee_no so every employee remains in the result.
  2. Return only customers whose status is Active, without removing employees who have no active customer.
  3. Include employee details, customer details, and an assignment_status column showing Active customer or No active customer.
  4. Order the results by employee number and then customer ID, placing missing customer IDs last.

Schema

employee
ColumnTypeDescription
employee_noPKINTEGERUnique ISS STOXX employee number
employee_nameVARCHAR(100)Employee's full name
teamVARCHAR(80)Employee's operations team
officeVARCHAR(80)Employee's office location
customer
ColumnTypeDescription
customer_idPKINTEGERUnique customer identifier
customer_nameVARCHAR(120)Customer organization name
employee_noINTEGERAssigned employee number
statusVARCHAR(20)Customer assignment status
Tablesemployeecustomer
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results