当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MySQL AVG方法用法及代码示例


MySQL 的 AVG(~) 聚合函数返回所提供的数字输入/列的平均值。

参数

1. input | numeric

AVG(~) 函数应计算平均值的数字列。

示例表 - 学生

student_id

名称

名字

day_enrolled

年龄

用户名

1

Sky

Towner

2015-12-03

17

stowner1

2

Ben

Davis

2016-04-20

19

bdavis2

3

Travis

Apple

2018-08-14

18

tapple3

4

Arthur

David

2016-04-01

16

adavid4

5

Benjamin

Town

2014-01-01

17

btown5

可以使用此处的代码创建上述示例表。

例子

返回学生的平均年龄:

SELECT AVG(age) AS "Average Age"
FROM students;



+-------------+
| Average Age |
+-------------+
|     17.4000 |
+-------------+
1 row in set (0.00 sec)

仅筛选年龄高于平均年龄的学生:

SELECT *
FROM students
WHERE age > (SELECT AVG(age) FROM students);



+------------+--------+-------+--------------+------+----------+
| student_id | fname  | lname | day_enrolled | age  | username |
+------------+--------+-------+--------------+------+----------+
|          2 | Ben    | Davis | 2016-04-20   |   19 | bdavis2  |
|          3 | Travis | Apple | 2018-08-14   |   18 | tapple3  |
+------------+--------+-------+--------------+------+----------+
2 rows in set (0.01 sec)

相关用法


注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 MySQL | AVG method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。