Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Find Mismatches Between Tables

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

Your question is Find Mismatches Between Tables. 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

How would you write a SQL query using joins to compare records between two tables and find mismatches?

Use the provided employee record tables. Return records that are missing from either table or have different values in any compared attribute.

Output

  1. One row per mismatched employee record
  2. Include employee_id, source and target values for name, status, hourly rate, and department, plus mismatch_type
  3. Sort by employee_id ascending

Schema

source_employee_records
ColumnTypeDescription
employee_idPKINTEmployee identifier in the source table
employee_nameVARCHAR(100)Employee name
employment_statusVARCHAR(20)Current employment status
hourly_rateNUMERIC(10,2)Hourly pay rate
departmentVARCHAR(50)Employee department
target_employee_records
ColumnTypeDescription
employee_idPKINTEmployee identifier in the target table
employee_nameVARCHAR(100)Employee name
employment_statusVARCHAR(20)Current employment status
hourly_rateNUMERIC(10,2)Hourly pay rate
departmentVARCHAR(50)Employee department
Tablessource_employee_recordstarget_employee_records
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results