SQL AVG Function
The AVG() function in SQL Server is part of the aggregate function. We use this function to calculate the average value of a various records.This function ignores NULL values. The SQL AVG() function is used with the SQL SELECT statement. Syntax SELECT AVG(columnname) FROM tablename WHERE condition; Example Let’s take a example table PRODUCTS with some…
View On WordPress
















