Explain any four aggregate functions in SQL with syntax.
Answers
Answered by
3
- AVG – calculates the average of a set of values.
- COUNT – counts rows in a specified table or view.
- MIN – gets the minimum value in a set of values.
- MAX – gets the maximum value in a set of values.
- SUM – calculates the sum of values.
jessi84:
hii
Answered by
0
An aggregate function is used to provide summarization information for an SQL statement, such as counts, totals, and averages. SQL Aggregate Functions: SQL Aggregate Functions operate on complete sets of data and return a single result. PointBase supports five Aggregate Functions: AVG, COUNT, MAX, MIN, and SUM.
Similar questions