Answer: AVG() function is an in-built Sql-Server function which is used to calculate the average of a column values.
Note:Column must be of Integer type.
Syntax:
Select Avg(column_name) From table_name;
For Example:
Select Avg(Budget) from Project_Master;
Asked In: Many Interviews |
Alert Moderator