Introduction
Aggregate functions perform calculations on a set of values and return a single value. With the exception of the COUNT aggregate function, all other aggregate functions ignore NULL Values.
Aggregate functions are frequently used with the GROUP BY clause of the SELECT Statement.
List of Aggregate Functions
- AVG
- CHECKSUM_AGG
- COUNT
- COUNT_BIG
- MAX
- MIN
- SUM
- STDEV
- STDEVP
- VAR
- VARP

Explaining the above functions:
- AVG: Return the average of the values. The expression contains numeric value.

- CHECKSUM_AGG: Return the checksum of the values in group. Null Values are ignored,

- COUNT: Returns row count and int data type value always. It can be followed by Over clause.

- COUNT_BIG: Count_big work in the same way as Count function but difference is that count_big return big int data type values.

- MAX: Return maximum value in expression. It ignores Null Values and can be followed by over clause.

- Min: Return minimum values in expression and ignores Null values.

- SUM: Return sum of all the values, or only the distinct values.

- STDEV: Return the statistical standard deviation of all values in specified expression. It ignores null values.

- STDEVP: Return the statistical standard deviation for the population for all values in specified expression. It ignores Null Values.

- VAR: Return the statistical variance of all variables in specified expression. It ignores Null Values .

- VARP: Return statistical Variance for the population for all values in specified expression. It ignores Null Values.

SubashPosted Jul 14, 2016, 10:35 PM
Good work
Santhakumar MunuswamyPosted Jan 17, 2016, 2:20 PM
Thanks for nice share
Shubham KumarPosted Jan 16, 2016, 12:58 PM
nice one keep share :)
Former memberPosted Jan 16, 2016, 2:39 AM
Thanks
Yashwant VishwakarmaPosted Jan 15, 2016, 7:18 AM
Nice article , thanks for sharing !!