The following SQL statement finds the average price of all products:
Example
SELECT AVG(Price)
FROM Products;
FROM Products;
Note: NULL values are ignored.
Practice Excercise Practice now
The following SQL statement finds the average price of all products:
Note: NULL values are ignored.
Practice Excercise Practice now