What are some examples of aggregate functions?
Max() : Computes the maximum of the non-null input values.
Avg(): Computes the average (arithmetic mean) of all the non-null input values.
Count(*): Computes the number of input rows.
Count(“any”): Computes the number of input rows in which the input value is not null.
What is the purpose of a group by clause?
To divide rows returned from the select statement into groups.