SQL AVG Function

The SQL Server AVG Function calculates the Average of total selected records or rows. The AVG function will only work on Numeric Columns, and its syntax is shown below. SELECT AVG ([Column_Name]) FROM [Source] For example, If you want to find the average price of products present in your Store. If you want to find … Read more