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

SQL for Backend Validation

MediumSQL · PostgreSQL

Problem

What is your experience with SQL for backend validation?

Using the provided orders and backend_validation_results tables, write a query that identifies records where backend data is missing, unexpectedly present, or differs from the stored order data. Treat two NULL values as equal.

Output

  1. One row per validation failure, with order_id, db_status, backend_status, db_total, backend_total, and validation_result.
  2. Exclude matching records.
  3. Order by order_id ascending.

Schema

orders
ColumnTypeDescription
order_idPKINTStored order identifier
statusVARCHAR(20)Order status in the database
total_amountNUMERIC(10,2)Stored order total
backend_validation_results
ColumnTypeDescription
order_idPKINTOrder identifier returned by the backend
statusVARCHAR(20)Order status returned by the backend
total_amountNUMERIC(10,2)Order total returned by the backend
Tablesordersbackend_validation_results
Interviewer

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