Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Second-Highest Server by Datacenter
00:00
5 left

Second-Highest Server by Datacenter

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the second-highest resource-consuming server from a telemetry log table, grouped by data center location.

Calculate each server's total resource consumption within its data center. Treat tied second-place totals as qualifying results, and ignore NULL resource values.

Output

  1. One row per server tied for second place in its data center
  2. Columns: data_center_location, server_id, total_resource_consumed
  3. Order by data center location, then server ID

Schema

telemetry_logs
ColumnTypeDescription
telemetry_idPKINTUnique telemetry record identifier
server_idVARCHAR(50)Identifier of the monitored server
data_center_locationVARCHAR(100)Data center where the server is located
resource_consumedDECIMAL(12,2)Resource units consumed in the telemetry interval
recorded_atTIMESTAMPTime when the telemetry was recorded
Tablestelemetry_logs
Interviewer

Your question is Second-Highest Server by Datacenter. 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.