Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Clean Event Statuses for Analysis
00:00
5 left

Clean Event Statuses for Analysis

EasySQL · PostgreSQL

Problem

You are given a raw event log exported from Databricks SQL where status values are inconsistent and some rows are not ready for analysis. Write a PostgreSQL query that returns the number of usable events per cleaned status. Treat status values case-insensitively, trim surrounding spaces, exclude rows where the cleaned status is empty or NULL, and only keep rows with a non-NULL event_date. Return the cleaned status and the event count, ordered by event count descending and cleaned status ascending.

Schema

event_log
ColumnTypeDescription
event_idPKINTUnique event identifier
raw_statusVARCHAR(50)Raw status text before cleaning
event_dateDATEDate the event was recorded
source_systemVARCHAR(30)Databricks surface that produced the row
Tablesevent_log
Interviewer

Your question is Clean Event Statuses for Analysis. Start with the requirements and the one table 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.