Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Sort Query
00:00
5 left

SQL Sort Query

EasySQL · PostgreSQL

Problem

Thales Ground Master radar systems record signal readings from monitored tracks. Write a PostgreSQL query that returns the readings sorted by signal strength from the lowest value to the highest value.

Requirements

  1. Return sensor_id, radar_name, and signal_strength from radar_readings.
  2. Sort signal_strength in ascending order, place NULL values after known readings, and use sensor_id as a tie-breaker.

Schema

radar_readings
ColumnTypeDescription
sensor_idPKINTUnique identifier for the radar reading
radar_nameVARCHAR(100)Name of the Ground Master radar station
signal_strengthNUMERIC(6,2)Recorded signal strength, which may be unknown
recorded_atTIMESTAMPTimestamp when the reading was captured
Tablesradar_readings
Interviewer

Your question is SQL Sort 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.