Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Validate Data Integrity
00:00
5 left

Validate Data Integrity

MediumSQL · PostgreSQL

Problem

What steps would you take to ensure the integrity of your data before analysis?

Use the users and transactions tables to identify transaction records with missing user references, invalid amounts, unsupported or missing statuses, invalid dates, or users whose email appears more than once.

Output

  1. One row per transaction, with transaction_id, integrity_status, and issue_details.
  2. Mark rows as valid only when no listed issue exists; otherwise mark them as invalid.
  3. Order by transaction_id ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
full_nameVARCHAR(100)User's full name
emailVARCHAR(255)User email address
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
user_idINTReferenced user identifier
amountNUMERIC(12,2)Transaction amount
statusVARCHAR(20)Transaction status
transaction_dateDATETransaction date
Tablesuserstransactions
Interviewer

Your question is Validate Data Integrity. 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.