Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Find Records With Missing Timestamps
00:00
5 left

Find Records With Missing Timestamps

EasySQL · PostgreSQL

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
Interviewer

Your question is Find Records With Missing Timestamps. 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.