1. Where is the DISTINCT filter evaluated in the query execution flow?
- Before WHERE is processed.
- Immediately after columns are projected in the SELECT phase.
- During the FROM phase.
- After the LIMIT clause.
Hint: DISTINCT works on projected columns; it runs immediately after the SELECT clause has generated candidate result rows.