trainingtrains Logo

91-9990449935

 0120-4256464

MySQL avg() function

The MySQL avg() function is used to return the average value of an expression.

Syntax:

Parameter explanation

aggregate_expression: It specifies the column or expression that will be averaged.

table_name: It specifies the tables, from where you want to retrieve records. There must be at least one table listed in the FROM clause.

WHERE conditions: It is optional. It specifies the conditions that must be fulfilled for the records to be selected.

MySQL avg() function example

Consider a table named "employees", having the following data.

mysql average 1

Execute the following query:

Output:

mysql average 2
Next TopicMySQL min()