1) The document discusses various aggregate functions such as SUM, COUNT, AVG, MIN, and MAX. It provides examples of using these functions on an Employee table to calculate totals, averages, minimums, and maximums.
2) When using aggregate functions, all non-aggregated columns in the SELECT statement must be included in the GROUP BY clause.
3) Aggregate functions like AVG ignore NULL values, so they will not count rows where the expression is NULL.