Loading lesson path
Concept visual
Start at both ends
Return the average value for the "Price" column in the "Products" table:
AveragePrice FROM Products;The Avg() function returns the average value of an expression.
NULL values are ignored.
expression )
Required. A numeric value (can be a field or a formula)
Select all the products that have a price above the average price:
SELECT * FROM Products
WHERE Price > (SELECT Avg(Price) FROM Products);❮ MS Access Functions