Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Second-Highest Traffic Query
00:00
5 left

SQL Second-Highest Traffic Query

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the second-highest traffic volume recorded in a network connection log table.

Return the second-highest distinct value. If multiple records have the same traffic volume, treat them as one value. Ignore records where the traffic volume is NULL.

Output

  1. Return one row with the column second_highest_traffic_volume
  2. Return NULL if no second-highest distinct value exists

Schema

network_connection_logs
ColumnTypeDescription
connection_idPKINTUnique identifier for the connection log record
traffic_volumeBIGINTRecorded traffic volume for the connection
source_ipVARCHAR(45)Source IP address associated with the connection
connection_statusVARCHAR(20)Connection outcome status
recorded_atTIMESTAMPTimestamp when the traffic was recorded
Tablesnetwork_connection_logs
Interviewer

Your question is SQL Second-Highest Traffic Query. 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.