關於mysql函數GROUP_CONCAT

來源:互聯網
上載者:User

標籤:des   http   使用   io   資料   問題   cti   ar   

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=2GROUP 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_coursesWHERE 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 FROMstudent_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,設定就會生效。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.