1. What happens to rows when a GROUP BY clause is executed?
- They are sorted in ascending order.
- Rows containing matching values in the grouping columns are collapsed into a single summary row.
- Any rows containing NULLs are automatically discarded.
- Duplicate columns are dropped.
Hint: GROUP BY collapses multiple records sharing the same grouping keys into a single row, allowing summary calculations to execute on each group.