1. If you group by a computed date expression DATE_TRUNC('month', order_date), what is required in the SELECT clause?
- You must project order_date as a raw timestamp.
- You cannot project the date at all.
- Any reference to the date in SELECT must use the identical expression DATE_TRUNC('month', order_date).
- You must cast the date to text.
Hint: To project the grouping key in SELECT, it must match the GROUP BY expression exactly (or use the expression alias if the dialect supports it).