Which statements about the GROUP BY clause in SQL are correct?
A) Must contain any non-aggregate field(s) listed in the SELECT statement.
B) Should follow SELECT, FROM, and WHERE (if present).
C) Indicates that we want our aggregate function to be calculated for each unique combination of values of the GROUP BY fields.
D) All of these choices