[Mysql 查詢語句]——分組查詢group by

Jelly_lyj發表於2017-03-18

group by

(1) group by的含義:將查詢結果按照1個或多個欄位進行分組,欄位值相同的為一組
(2) group by可用於單個欄位分組,也可用於多個欄位分組

select * from employee;
+------+------+--------+------+------+-------------+
| num  | d_id | name   | age  | sex  | homeaddr    |
+------+------+--------+------+------+-------------+
|    1 | 1001 | 張三   |   26 || beijinghdq  |
|    2 | 1002 | 李四   |   24 || beijingcpq  |
|    3 | 1003 | 王五   |   25 || changshaylq |
|    4 | 1004 | Aric   |   15 || England     |
+------+------+--------+------+------+-------------+

select * from employee group by d_id,sex;
select
* from employee group by sex; +------+------+--------+------+------+------------+ | num | d_id | name | age | sex | homeaddr | +------+------+--------+------+------+------------+ | 2 | 1002 | 李四 | 24 || beijingcpq | | 1 | 1001 | 張三 | 26 || beijinghdq | +------+------+--------+------+------+------------+ 根據sex欄位來分組,sex欄位的全部值只有兩個('男'和'女'),所以分為了兩組 當group by單獨使用時,只顯示出每組的第一條記錄 所以group by單獨使用時的實際意義不大

 

group by + group_concat()

(1) group_concat(欄位名)可以作為一個輸出欄位來使用,
(2) 表示分組之後,根據分組結果,使用group_concat()來放置每一組的某欄位的值的集合

select sex from employee group by sex;
+------+
| sex  |
+------+
||
||
+------+

select sex,group_concat(name) from employee group by sex;
+------+--------------------+
| sex  | group_concat(name) |
+------+--------------------+
|| 李四               |
|| 張三,王五,Aric     |
+------+--------------------+

select sex,group_concat(d_id) from employee group by sex;
+------+--------------------+
| sex  | group_concat(d_id) |
+------+--------------------+
|| 1002               |
|| 1001,1003,1004     |
+------+--------------------+

 

group by + 集合函式

(1) 通過group_concat()的啟發,我們既然可以統計出每個分組的某欄位的值的集合,那麼我們也可以通過集合函式來對這個"值的集合"做一些操作

select sex,group_concat(age) from employee group by sex;
+------+-------------------+
| sex  | group_concat(age) |
+------+-------------------+
|| 24                |
|| 26,25,15          |
+------+-------------------+

分別統計性別為男/女的人年齡平均值 select sex,avg(age) from employee group by sex; +------+----------+ | sex | avg(age) | +------+----------+ || 24.0000 | || 22.0000 | +------+----------+
分別統計性別為男/女的人的個數 select sex,count(sex) from employee group by sex; +------+------------+ | sex | count(sex) | +------+------------+ || 1 | || 3 | +------+------------+

 

group by + having

(1) having 條件表示式:用來分組查詢後指定一些條件來輸出查詢結果
(2) having作用和where一樣,但having只能用於group by

select sex,count(sex) from employee group by sex having count(sex)>2;
+------+------------+
| sex  | count(sex) |
+------+------------+
||          3 |
+------+------------+

 

group by + with rollup

(1) with rollup的作用是:在最後新增一行,來記錄當前列裡所有記錄的總和

select sex,count(age) from employee group by sex with rollup;
+------+------------+
| sex  | count(age) |
+------+------------+
||          1 |
||          3 |
| NULL |          4 |
+------+------------+

select sex,group_concat(age) from employee group by sex with rollup;
+------+-------------------+
| sex  | group_concat(age) |
+------+-------------------+
|| 24                |
|| 26,25,15          |
| NULL | 24,26,25,15       |
+------+-------------------+

 



 

相關文章