Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Join Missing Records

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

Your question is SQL Join Missing Records. 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

Write a SQL query to join two tables and find specific missing records.

Using the provided tables, identify records in expected_records for BATCH-100 that do not have a corresponding entry in processed_records. Include only records genuinely absent from the processed table.

Output

  1. One row per missing expected record
  2. Columns: record_id, record_label
  3. Sort by record_id ascending

Schema

expected_records
ColumnTypeDescription
record_idPKINTIdentifier of the expected record
batch_idVARCHAR(30)Batch containing the expected record
record_labelVARCHAR(100)Human-readable record label
processed_records
ColumnTypeDescription
processed_idPKINTIdentifier of the processing entry
record_idINTIdentifier of the processed record
processed_statusVARCHAR(20)Processing status recorded for the entry
Tablesexpected_recordsprocessed_records
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results