1. What does ROW_NUMBER() guarantee in its output?
- All rows will receive a unique, sequential integer within their partition, even if values tie.
- Tied values receive the same row number.
- Row numbers will match primary keys.
- It only counts non-null rows.
Hint: ROW_NUMBER() assigns a unique, incrementing index to each row in the window partition, resolving ties sequentially.