有關從表的不同列中選取平均值的 MySql 查詢?


要想獲取平均值,請使用 AVG() 加上 DISTINCT 一道使用,以便從不同的記錄中計算。我們首先建立一張表 -

mysql> create table DemoTable1934
   (
   StudentName varchar(20),
   StudentMarks int
   );
Query OK, 0 rows affected (0.00 sec)

使用插入命令在表中插入一些記錄 -

mysql> insert into DemoTable1934 values('Chris',56);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1934 values('Chris',56);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1934 values('David',78);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1934 values('David',78);
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1934 values('Carol',45);
Query OK, 1 row affected (0.00 sec)

使用 select 語句從表中顯示所有記錄 -

mysql> select * from DemoTable1934;

這將產生以下輸出 -

+-------------+--------------+
| StudentName | StudentMarks |
+-------------+--------------+
| Chris       |           56 |
| Chris       |           56 |
| David       |           78 |
| David       |           78 |
| Carol       |           45 |
+-------------+--------------+
5 rows in set (0.00 sec)

以下是從表中不同列選擇平均值的查詢 -

mysql> select avg(tbl.StudentMarks)
   from
   (
   select distinct StudentName,StudentMarks
   from DemoTable1934
   ) as tbl;

這將產生以下輸出 -

+-----------------------+
| avg(tbl.StudentMarks) |
+-----------------------+
|               59.6667 |
+-----------------------+
1 row in set (0.00 sec)

更新於: 30-12-2019

477 次瀏覽

開啟您的 職業生涯

完成課程獲得認證

開始
廣告
© . All rights reserved.