Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
UPSERT Incremental Load
00:00
5 left

UPSERT Incremental Load

MediumSQL · PostgreSQL

Problem

Write a query to perform incremental data loading from a staging table to a target dimension table, ensuring that you handle both inserts and updates (UPSERT).

Use the provided staging and target tables. For duplicate business keys in staging, only the newest record should be considered. Do not overwrite a target row with an older staging record.

Output

  1. Return one row for each inserted or updated dimension record.
  2. Include customer_id, customer_name, email, status, and updated_at.
  3. Order by customer_id ascending.

Schema

dim_customer_staging
ColumnTypeDescription
customer_idINTBusiness key for the customer
customer_nameVARCHAR(100)Customer name from the source batch
emailVARCHAR(255)Customer email address
statusVARCHAR(20)Current customer status
updated_atTIMESTAMPSource modification timestamp
load_idPKINTUnique staging record identifier and tie-breaker
dim_customer
ColumnTypeDescription
customer_idPKINTBusiness key for the customer
customer_nameVARCHAR(100)Customer name stored in the dimension
emailVARCHAR(255)Customer email address
statusVARCHAR(20)Current customer status
updated_atTIMESTAMPMost recent applied source modification timestamp
Tablesdim_customer_stagingdim_customer
Interviewer

Your question is UPSERT Incremental Load. 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.