1. What does adding ORDER BY inside the OVER clause do by default?
- It sorts the final query output.
- It establishes an ordered window frame, calculating running aggregates by default.
- It disables partition resets.
- It forces index scans.
Hint: Adding ORDER BY inside OVER changes the default window frame to 'RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW', which calculates cumulative (running) values.