MySQL AVG() Function
Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
MySQL AVG() Function
❮ MySQL Functions
Example
Return the average value for the "Price" column in the "Products" table:
SELECT AVG(Price) AS
AveragePrice FROM Products;
Try it Yourself »
Definition and Usage
The AVG() function returns the average value of an expression.
Note: NULL values are ignored.
Syntax
AVG(expression)
Parameter Values
Parameter | Description |
---|---|
expression | Required. A numeric value (can be a field or a formula) |
Technical Details
Works in: | From MySQL 4.0 |
---|
More Examples
Example
Select the records that have a price above the average price:
SELECT * FROM Products
WHERE Price > (SELECT AVG(Price) FROM Products);
Try it Yourself »
❮ MySQL Functions