The following SQL statement finds the average price of all products:

Example

SELECT AVG(Price)
FROM Products;
 

Note: NULL values are ignored.



Practice Excercise Practice now