SQL AVG () function

Source: Internet
Author: User

SqlAVG () function AVG () function

The AVG () function returns the average of a numeric column.

SQL AVG () syntax
SELECT AVG  from table_name


Demo Database

In this tutorial, we will use the Runoob sample database.

The following is the data selected from the "Access_log" table:

+-----+---------+-------+------------+|Aid|site_id| Count |Date|+-----+---------+-------+------------+|   1 |       1 |     $ |  .- to-Ten ||   2 |       3 |    - |  .- to- - ||   3 |       1 |    the |  .- to- - ||   4 |       2 |    Ten |  .- to- - ||   5 |       5 |   205 |  .- to- - ||   6 |       4 |     - |  .- to- the ||   7 |       3 |    - |  .- to- the ||   8 |       5 |   545 |  .- to- - ||   9 |       3 |   201 |  .- to- - |+-----+---------+-------+------------+


SQL AVG () instance

The following SQL statement gets the average value from the "Count" column of the "Access_log" table:

Instance
SELECT AVG (count as from Access_log;

Execute the above SQL output as follows:

The following SQL statement selects "site_id" and "count" for access above the average number of accesses:

Instance
SELECT Count  from Access_log WHERE Count > (SELECTAVG(count from Access_log);

Execute the above SQL output as follows:

SQL AVG () function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.