Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Verifying Data Consistency Across Environments
00:00
5 left

Verifying Data Consistency Across Environments

MediumSQL · PostgreSQL

Problem

How do you verify data consistency across different environments?

Use the provided environment and record data to compare the production and staging environments. Identify matching records, value differences, and records missing from either environment.

Output

  1. One row per distinct record key found in either environment.
  2. Return external_key, production_value, staging_value, consistency_status, production_updated_at, and staging_updated_at.
  3. Sort by external_key ascending.

Schema

environments
ColumnTypeDescription
environment_idPKINTUnique environment identifier
environment_nameVARCHAR(50)Environment name, such as production or staging
regionVARCHAR(30)Deployment region for the environment
environment_records
ColumnTypeDescription
record_idPKINTUnique record identifier
environment_idINTReferenced environment
external_keyVARCHAR(50)Logical key used to compare records across environments
record_valueVARCHAR(100)Value stored for the logical record
updated_atTIMESTAMPLast update timestamp for the record
Tablesenvironmentsenvironment_records
Interviewer

Your question is Verifying Data Consistency Across Environments. 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.