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

Max Temperature SQL Query

EasySQL · PostgreSQL

Problem

Given a dataset of sensor readings, write a SQL query to retrieve the maximum temperature recorded by a specific device over a defined time range.

Use device device-104 and include readings from 2025-01-10 00:00:00+00 through 2025-01-10 23:59:59+00. The start and end timestamps define an inclusive time range.

Output

  1. Return one row with a column named max_temperature.
  2. Include only readings from the specified device and time range.

Schema

sensor_readings
ColumnTypeDescription
reading_idPKINTUnique identifier for the sensor reading
device_idVARCHAR(50)Identifier of the device that produced the reading
recorded_atTIMESTAMPTZTimestamp when the reading was recorded
temperatureDECIMAL(5,2)Recorded temperature value
Tablessensor_readings
Interviewer

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