Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Anti-Join Without EXCEPT
00:00
5 left

Anti-Join Without EXCEPT

MediumSQL · PostgreSQL

Problem

Given two tables, write a query to identify records that exist in one but not the other without using EXCEPT.

For this exercise, compare source_records with target_records using record_id. Return records present in source_records that have no matching record in target_records.

Output

  1. One row per unmatched source record.
  2. Return record_id and record_name.
  3. Sort by record_id in ascending order.

Schema

source_records
ColumnTypeDescription
record_idPKINTUnique identifier for the source record
record_nameVARCHAR(100)Descriptive name of the source record
record_statusVARCHAR(20)Current status of the source record
target_records
ColumnTypeDescription
record_idPKINTUnique identifier for the target record
record_nameVARCHAR(100)Descriptive name of the target record
record_statusVARCHAR(20)Current status of the target record
Tablessource_recordstarget_records
Interviewer

Your question is Anti-Join Without EXCEPT. 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.