Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Clean Inconsistent Expense Entries

MediumSQL · PostgreSQL00:00
I
Practice interviewer
Your interviewer
In session
I
Interviewer

Welcome to the SQL screen.

The question is on your right: Clean Inconsistent Expense Entries. Read through the requirements and the two tables first.

Run and submit your code as often as you need. You also have five interviewer messages this session - want to talk through your approach, or are you ready to start coding?

You need to log in / sign up to run or submit.

Problem

Write a PostgreSQL query that cleans inconsistent department, category, and amount fields from CU Denver Finance expense staging data, then returns department-level totals for valid expenses only. Exclude unmatched departments and invalid or negative amounts, and keep only departments with at least 2 valid cleaned rows.

Schema

expense_staging
ColumnTypeDescription
expense_idINTRaw expense row ID
dept_name_rawVARCHAR(100)Department name from source extract
category_rawVARCHAR(50)Raw category text
amount_rawVARCHAR(30)Amount stored as text
expense_dateDATEExpense date
dept_reference
ColumnTypeDescription
dept_codeVARCHAR(10)Department code
dept_name_standardVARCHAR(100)Standard department name

Representative Rows

dept_reference
FINFinance
BUDBudget Office
SAStudent Affairs
expense_staging
1financetravel$1,200.502024-01-10
4Budget Officesupplies-502024-01-18
8Student Affairstravelabc2024-02-01
10Unknown DeptSupplies$1002024-02-05
Tablesexpense_stagingdept_reference
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results