Which SQL feature adds a calculated value across related rows without collapsing them?
- A Window functions with OVER
- B GROUP BY
- C DISTINCT
- D UNION
Answer
Window functions with OVER
PARTITION BY groups rows like GROUP BY but keeps every row, which is how running totals and rankings are produced.





