+ 1
Can someone define what an aggregate function is?
4 odpowiedzi
0
aggregate function provides sum eg sum(salAry)
0
aggregate function includes all mathematical opration.
0
An aggregate function performs some kind of calculation with a bunch of entries (the result of your select), for example, adds up all the values in a column (SUM), gets the average (AVG), minimum (MIN) or maximum (MAX) value of all the values in a column, or returns the number of entries in your result set (COUNT).
- 1
aggregate function is used to perform operations like sum, avg, min,max :)