當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。