Home Tutorial Php Sql MySQL Average Command

 
 

MySQL Average Command
Posted on: December 9, 2010 at 12:00 AM
This example illustrates how to execute the Average command in MySQL.

MySQL Average Command

This example illustrates how to execute the Average command in MySQL.

In this example we create a select query to find the average of 'lastAccess' field.

 

Query

 

Output

 

select AVG(lastAccess) from emp;

 

+---------------------------+
| AVG(lastAccess)           |
+---------------------------+
| 16734273156259.9450000000 |
+---------------------------+

 

Related Tags for MySQL Average Command:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.