Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Requirement Validation
00:00
5 left

SQL for Requirement Validation

MediumSQL · PostgreSQL

Problem

Write SQL to validate system requirements by comparing data across tables and identifying mismatches.

Compare the expected requirement values with the observed system values, including records missing from either table and NULL values.

Output

  1. Return one row per discrepancy with requirement_id, requirement_name, expected_value, observed_value, and mismatch_type.
  2. Include missing, unexpected, and differing values, but exclude matching records.
  3. Order by requirement_id ascending.

Schema

system_requirements
ColumnTypeDescription
requirement_idPKINTUnique identifier for the system requirement
requirement_nameVARCHAR(100)Name of the requirement
expected_valueVARCHAR(100)Value required by the specification
validation_results
ColumnTypeDescription
requirement_idPKINTIdentifier of the validated requirement
observed_valueVARCHAR(100)Value observed in the system
validation_statusVARCHAR(20)Recorded validation status
Tablessystem_requirementsvalidation_results
Interviewer

Your question is SQL for Requirement Validation. 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.