Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Tools by Uptime
00:00
5 left

Top Tools by Uptime

HardSQL · PostgreSQL

Problem

Write a SQL query to find the top three highest-performing Applied Materials manufacturing tools per day based on sensor uptime, handling ties appropriately.

Use valid sensor readings only, and define daily uptime as total uptime seconds divided by total monitored seconds for each tool. Include only active tools. Ties should share the same rank, so a day may return more than three tools.

Output

  1. One row per qualifying tool and day with columns day, tool_id, tool_name, site_name, uptime_pct, and performance_rank.
  2. Include only ranks 1 through 3, ordered by day, rank, decreasing uptime percentage, and tool ID.

Schema

sensor_readings
ColumnTypeDescription
reading_idPKINTUnique sensor reading identifier
tool_idINTManufacturing tool associated with the reading
reading_dateDATECalendar day of the reading
uptime_secondsINTSeconds the tool was operational
monitored_secondsINTSeconds covered by the sensor measurement
tools
ColumnTypeDescription
tool_idPKINTUnique manufacturing tool identifier
tool_nameVARCHAR(100)Applied Materials tool name
tool_modelVARCHAR(80)Tool model or product family
site_idINTManufacturing site containing the tool
statusVARCHAR(20)Operational status of the tool
manufacturing_sites
ColumnTypeDescription
site_idPKINTUnique manufacturing site identifier
site_nameVARCHAR(100)Manufacturing site name
regionVARCHAR(50)Geographic region of the site
Tablessensor_readingstoolsmanufacturing_sites
Interviewer

Your question is Top Tools by Uptime. Start with the requirements and the three tables 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.