Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Querying Null Entries

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Querying Null Entries. Start with the requirements and the two tables on the right.

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.

Problem

First Trust Capital Management is reviewing client account data before producing advisor and regulatory reports. Write a PostgreSQL query that returns every account with one or more missing required values or without a matching advisor record.

Requirements

  1. Use a LEFT JOIN so accounts are retained even when their advisor is missing.
  2. Identify rows where risk_profile or tax_status is NULL, or where the account has no matching advisor.
  3. Return the account ID, client name, advisor name, and a comma-separated description of the missing entries.
  4. Sort the results by account_id ascending.

Schema

client_accounts
ColumnTypeDescription
account_idPKINTUnique client account identifier
client_nameVARCHAR(100)Client or household name
advisor_idINTAssigned advisor identifier
risk_profileVARCHAR(30)Investment risk classification
tax_statusVARCHAR(30)Tax treatment of the account
opened_onDATEAccount opening date
advisors
ColumnTypeDescription
advisor_idPKINTUnique advisor identifier
advisor_nameVARCHAR(100)Advisor's full name
team_nameVARCHAR(80)Advisor team
Tablesclient_accountsadvisors
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results