SQL Quest › SQL Interview Questions › Window Functions
Rolling Tool Wear Trend
Compute a 5-unit rolling average tool wear as we walk through products by udi. Use a window with ROWS BETWEEN. Show udi, product_id, tool_wear_min, rolling_5_avg (rounded to 1 decimal). Top 30 by udi.
Solve it in the browser editor →
Runs on SQLite in your browser, graded against the expected result, no signup. A wrong answer gets a diagnosis, not just "incorrect".
Schema
products
| udi | product_id | type | tool_wear_min |
|---|---|---|---|
| 5640 | L52819 | L | 180 |
| 2171 | M17030 | M | 10 |
| 228 | L47407 | L | 168 |
Expected output: Smoothed tool wear trend
Hint
Concepts
SELECT Window Functions AVG
Practise the topic: SQL practice questions · Window function practice · GROUP BY exercises · Advanced SQL interview questions
Related questions
Where would this cost you points in an interview?
Ten questions, no signup: a Skillmap across nine SQL skills and the one to fix first.
Take the readiness test