Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rank Plants by Anomaly Rate
00:00
5 left

Rank Plants by Anomaly Rate

HardSQL · PostgreSQL

Problem

Write a SQL query using window functions to compute a 7-day rolling average and rank plants by their weekly anomaly rate at Siemens.

Use the provided plants and plant_readings tables. Treat a reading with a true anomaly_flag as anomalous. Calculate rates using all readings in each plant-week, including readings whose sensor value is NULL.

Output

  1. One row per plant and reading date with available readings.
  2. Return week_start, plant_name, reading_date, daily_average, rolling_7_day_average, weekly_anomaly_rate, and weekly_anomaly_rank.
  3. Sort by week_start, weekly_anomaly_rank, plant_name, and reading_date.

Schema

plants
ColumnTypeDescription
plant_idPKINTUnique plant identifier
plant_nameVARCHAR(100)Plant name
regionVARCHAR(50)Geographic region of the plant
plant_readings
ColumnTypeDescription
reading_idPKINTUnique reading identifier
plant_idINTReferenced plant identifier
reading_dateDATEDate when the reading was recorded
sensor_valueNUMERIC(10,2)Measured sensor value
anomaly_flagBOOLEANWhether the reading was flagged as anomalous
Tablesplantsplant_readings
Interviewer

Your question is Rank Plants by Anomaly Rate. Start with the requirements and the two 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.