使用 MySQL 中的 distinct ids 计数对 Score 列中总体进行平均?
你可以将 DISTINCT 与 COUNT() 连用。我们先创建一个表 −
mysql> create table DemoTable -> ( -> Id int, -> Score int -> ); Query OK, 0 rows affected (0.95 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values(10,90); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(10,190); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(11,230); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(11,130); Query OK, 1 row affected (0.17 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
这样将会产生以下的输出 −
+------+-------+ | Id | Score | +------+-------+ | 10 | 90 | | 10 | 190 | | 11 | 230 | | 11 | 130 | +------+-------+ 4 rows in set (0.00 sec)
以下是使用 MySQL 中的 distinct ids 计数对 Score 列中总体进行平均的查询。这里的 distinct ids 为 2,因此要找出平均数,总计 640,即 90 + 190 + 230 + 130 将被除以 2 −
mysql> SELECT SUM(Score) / COUNT(DISTINCT Id) from DemoTable;
这样将会产生以下的输出 −
+---------------------------------+ | SUM(Score) / COUNT(DISTINCT Id) | +---------------------------------+ | 320.0000 | +---------------------------------+ 1 row in set (0.00 sec)
广告