Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Inner Join With Missing Values
00:00
5 left

Inner Join With Missing Values

MediumSQL · PostgreSQL

Problem

Given two tables, write a Python script to perform an inner join and handle missing values.

Use the provided accounts and account_attributes tables. Return only records with matching account IDs, replacing missing output values with clear default labels.

Output

  1. One row per matching account ID
  2. Columns: account_id, account_name, segment, contact_email
  3. Replace missing names, segments, and email addresses with Unnamed account, Unknown, and Not provided
  4. Order by account_id ascending

Schema

accounts
ColumnTypeDescription
account_idPKINTUnique account identifier
account_nameVARCHAR(100)Display name of the account
account_attributes
ColumnTypeDescription
account_idPKINTAccount identifier associated with the attributes
segmentVARCHAR(50)Account segment
contact_emailVARCHAR(150)Primary contact email address
Tablesaccountsaccount_attributes
Interviewer

Your question is Inner Join With Missing Values. 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.