1. How does the standard SELECT DISTINCT query filter duplicates?
- It evaluates unique combinations across all projected columns.
- It filters duplicates only in the primary key column.
- It randomly drops duplicate rows.
- It groups rows into array formats.
Hint: Standard DISTINCT examines the complete output row, removing duplicates where all column values match.