Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Finding Missing Numbers in SQL
00:00
5 left

Finding Missing Numbers in SQL

EasySQL · PostgreSQL

Problem

Business Context

Ernst & Young U.S. LLP uses employee-number sequences to identify gaps in HR data loads. A missing number may indicate an incomplete extract or a record that requires investigation.

Task

Write a PostgreSQL query that identifies every missing empnum in the expected inclusive sequence from 1001 through 1015.

Requirements

  1. Generate every expected employee number in the specified range, including the boundary values.
  2. Return only sequence values that do not appear in emp.
  3. Ignore duplicate employee numbers and NULL values in the source table.
  4. Return one column named missing_empnum, sorted in ascending order.

Schema

emp
ColumnTypeDescription
emp_idPKINTEGERUnique row identifier
empnumINTEGEREmployee number, which may contain duplicates or NULL
employee_nameVARCHAR(100)Employee name when available
Tablesemp
Interviewer

Your question is Finding Missing Numbers in SQL. 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.