Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Consecutive Numbers SQL
00:00
5 left

Consecutive Numbers SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to find three consecutive numbers in a dataset.

Assume the table is sequence_values, where position_id identifies the sequence position and number_value stores the number. Return each non-null number that appears at three consecutive positions, even when the same number appears in multiple qualifying runs.

Output

  1. One row per distinct qualifying number, named consecutive_number.
  2. Include only numbers present at three successive position_id values.
  3. Sort the results by consecutive_number in ascending order.

Schema

sequence_values
ColumnTypeDescription
position_idPKINTSequence position used to determine adjacency
number_valueINTNumber recorded at the sequence position
Tablessequence_values
Interviewer

Your question is Consecutive Numbers 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.