Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Find Records With Missing Timestamps

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

Your question is Find Records With Missing Timestamps. Start with the requirements and the one table 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

The Apex Systems QA test run dashboard stores each automated test execution in a single log table. Some records were created without an execution timestamp and must be identified for data-quality review.

Write a PostgreSQL query to return test execution records where executed_at is missing.

Requirements

  1. Return the execution ID, test name, environment, and execution timestamp.
  2. Include only rows where executed_at is NULL, ordered by execution ID ascending.

Schema

qa_test_runs
ColumnTypeDescription
execution_idPKINTEGERUnique test execution identifier
test_nameVARCHAR(150)Name of the QA test
environmentVARCHAR(30)Execution environment
executed_atTIMESTAMPTZTest execution start time, which may be missing
statusVARCHAR(20)Test result status
Tablesqa_test_runs
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results