在寫mysql查詢語句的時候,group_concat函式的作用:
在查詢的時候group_concat separator可將查詢結果用字串連線變為一行,需要配合使用group by
比如 select userid,score
from tbl_score
結果為 :
userid score
13 80
13 98
使用後: select
group_concat(userid order by userid separator ';') userid, score
from tbl_score
原文:
Mysql分組資料合併group concat用法
group concat用法 預設用法 select group concat vaccine name as do accinename from t vaccine where id in select vaccine id from t dog vaccine where dog id 1 1...
MySQL 多行資料合併 GROUP CONCAT
表結構及資料 drop table if exists course create table course id int 11 not null,name varchar 50 default null comment 姓名 course name varchar 50 default null ...
MySQL 多行資料合併 GROUP CONCAT
表結構及資料 drop table if exists course create table course name varchar 255 character set utf8 collate utf8 general ci default null,course name varchar 25...