GROUP_CONCAT()是MySQL資料庫提供的一個函數,通常跟GROUP BY一起用,具體可參考MySQL官方文擋:http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat。
文法:
GROUP_CONCAT([DISTINCT] expr [,expr ...] [ORDER BY {unsigned_integer | col_name | expr} [ASC | DESC] [,col_name ...]] [SEPARATOR str_val])
1.例如:
SELECT student_id, GROUP_CONCAT(courses_id) AS courses FROM student_courses WHERE student_id=2 GROUP BY student_id;
+------------+---------+
| student_id | courses |
+------------+---------+
| 2 | 3,4,5 |
+------------+---------+
這 就不需要用php迴圈了
$row = $pdo->query("SELECT student_id, GROUP_CONCAT(courses_id) AS courses FROM student_courses WHERE student_id=2 GROUP BY student_id");
$result = explode(',', $row['courses']);
2.當然分隔字元還可以自訂,預設是以“,”作為分隔字元,若要改為“|||”,則使用SEPARATOR來指定,例如:
SELECT student_id, GROUP_CONCAT(courses_id SEPARATOR '|||') AS courses FROM student_courses WHERE student_id=2 GROUP BY student_id;
+------------+---------+
| student_id | courses |
+------------+---------+
| 2 | 3|||4|||5 |
+------------+---------+
3.除此之外,還可以對這個組的值來進行排序再串連成字串,例如按courses_id降序來排:
SELECT student_id, GROUP_CONCAT(courses_id ORDER BY courses_id DESC) AS courses FROM student_courses WHERE student_id=2 GROUP BY student_id;
+------------+---------+
| student_id | courses |
+------------+---------+
| 2 | 5,4,3 |
+------------+---------+
4.需要注意的:
a.int欄位的串連陷阱
當你用group_concat的時候請注意,串連起來的欄位如果是int型,一定要轉換成char再拼起來,
否則在你執行後(ExecuteScalar或者其它任何執行SQL返回結果的方法)返回的將不是一個逗號隔開的串,
而是byte[]。
該問題當你在SQLyog等一些工具中是體現不出來的,所以很難發現。
select group_concat(ipaddress) from t_ip 返回逗號隔開的串
select group_concat(id) from t_ip 返回byte[]
select group_concat(CAST(id as char)) from t_dep 返回逗號隔開的串
select group_concat(Convert(id , char)) from t_dep 返回逗號隔開的串
附Cast,convert的用法:
CAST(expr AS type), CONVERT(expr,type) , CONVERT(expr USING transcoding_name)
CAST() 和CONVERT() 函數可用來擷取一個類型的值,併產生另一個類型的值。
這個類型 可以是以下值其中的 一個:
BINARY[(N)]
CHAR[(N)]
DATE
DATETIME
DECIMAL
SIGNED [INTEGER]
TIME
UNSIGNED [INTEGER]
b.長度陷阱
用了group_concat後,select裡如果使用了limit是不起作用的.
用group_concat串連欄位的時候是有長度限制的,並不是有多少連多少。但你可以設定一下。
使用group_concat_max_len系統變數,你可以設定允許的最大長度。
程式中進行這項操作的文法如下,其中 val 是一個不帶正負號的整數:
SET [SESSION | GLOBAL] group_concat_max_len = val;
若已經設定了最大長度,則結果被截至這個最大長度。
在SQLyog中執行 SET GLOBAL group_concat_max_len = 10 後,重新開啟SQLyog,設定就會生效。
下面這個面試題就用到了GROUP_CONCAT()
他們公司網站上的廣告位是輪播的,每天某一廣告位最多可輪播的廣告數量是有限制的,比如A廣告位,每天只能輪播三個廣告,但銷售人員在銷售廣告位時並不考慮此限制,要求查詢出合約表中,超過廣告位輪播數量的合約。
mysql> select * from s1;
+----+----+------------+------------+
| t1 | t2 | t3 | t4 |
+----+----+------------+------------+
| 1 | A | 2006-11-01 | 2006-11-03 |
| 2 | C | 2006-11-02 | 2006-11-03 |
| 3 | B | 2006-11-01 | 2006-11-04 |
| 4 | A | 2006-11-03 | 2006-11-04 |
| 5 | C | 2006-11-01 | 2006-11-02 |
| 6 | B | 2006-11-02 | 2006-11-05 |
| 7 | A | 2006-11-02 | 2006-11-03 |
| 8 | A | 2006-11-04 | 2006-11-05 |
| 9 | C | 2006-11-03 | 2006-11-04 |
| 10 | C | 2006-11-02 | 2006-11-04 |
+----+----+------------+------------+
mysql> select * from s2;
+----+----+
| t6 | t5 |
+----+----+
| A | 2 |
| B | 1 |
| C | 3 |
+----+----+
8 rows in s
廣告位A每天最多可輪播2個廣告,但合約表中在2006-11-03這天有三個廣告(1、4、7),對於廣告位A,1、4、7則是最終需要得到的結果。如需要可使用暫存資料表、預存程序等。
最終得到
超過相應t5的值
t2 adate value
A 2006-11-01 1
A 2006-11-02 1,7
解答:
建立一個日曆表 calendar 放上一段期間內的日期
-
SQL code
-
mysql> select * from s1;+----+------+------------+------------+| t1 | t2 | t3 | t4 |+----+------+------------+------------+| 1 | A | 2006-11-01 | 2006-11-03 || 2 | C | 2006-11-02 | 2006-11-03 || 3 | B | 2006-11-01 | 2006-11-04 || 4 | A | 2006-11-03 | 2006-11-04 || 5 | C | 2006-11-01 | 2006-11-02 || 6 | B | 2006-11-02 | 2006-11-05 || 7 | A | 2006-11-02 | 2006-11-03 || 8 | A | 2006-11-04 | 2006-11-05 || 9 | C | 2006-11-03 | 2006-11-04 || 10 | C | 2006-11-02 | 2006-11-04 |+----+------+------------+------------+10 rows in set (0.00 sec)mysql> create table calendar(d date primary key);Query OK, 0 rows affected (0.08 sec)mysql> insert into calendar values -> ('2006-11-01'), -> ('2006-11-02'), -> ('2006-11-03'), -> ('2006-11-04'), -> ('2006-11-05'), -> ('2006-11-06'), -> ('2006-11-07'), -> ('2006-11-08'), -> ('2006-11-09'), -> ('2006-11-10'), -> ('2006-11-11'), -> ('2006-11-12'), -> ('2006-11-13'), -> ('2006-11-14'), -> ('2006-11-15'), -> ('2006-11-16'), -> ('2006-11-17'), -> ('2006-11-18'), -> ('2006-11-19'), -> ('2006-11-20');Query OK, 20 rows affected (0.06 sec)Records: 20 Duplicates: 0 Warnings: 0mysql>mysql> select s1.t2,c.d,GROUP_CONCAT(s1.t1) -> from calendar c ,s1 -> where c.d between s1.t3 and s1.t4 -> group by s1.t2,c.d;+------+------------+---------------------+| t2 | d | GROUP_CONCAT(s1.t1) |+------+------------+---------------------+| A | 2006-11-01 | 1 || A | 2006-11-02 | 7,1 || A | 2006-11-03 | 7,1,4 || A | 2006-11-04 | 8,4 || A | 2006-11-05 | 8 || B | 2006-11-01 | 3 || B | 2006-11-02 | 6,3 || B | 2006-11-03 | 6,3 || B | 2006-11-04 | 6,3 || B | 2006-11-05 | 6 || C | 2006-11-01 | 5 || C | 2006-11-02 | 5,10,2 || C | 2006-11-03 | 9,10,2 || C | 2006-11-04 | 9,10 |+------+------------+---------------------+14 rows in set (0.00 sec)mysql>
註:以上資源來源於網路