Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Average Process Time
00:00
5 left

SQL for Average Process Time

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the average time taken for each operational process in a given dataset.

Use the provided process and execution data. Calculate elapsed time only for completed executions with valid timestamps, while retaining processes with no qualifying executions.

Output

  1. One row per operational process with process_id, process_name, and average_duration_seconds.
  2. Return NULL when a process has no qualifying executions.
  3. Order by process_id ascending.

Schema

operational_processes
ColumnTypeDescription
process_idPKINTUnique identifier for the operational process
process_nameVARCHAR(100)Name of the operational process
process_executions
ColumnTypeDescription
execution_idPKINTUnique identifier for an execution
process_idINTProcess associated with the execution
statusVARCHAR(20)Execution status
started_atTIMESTAMPExecution start timestamp
completed_atTIMESTAMPExecution completion timestamp
Tablesoperational_processesprocess_executions
Interviewer

Your question is SQL for Average Process Time. Start with the requirements and the two tables 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.