mysql之group concat函式詳解

2021-10-25 06:45:27 字數 1034 閱讀 6190

函式語法:

group_concat( [distinct] 要連線的字段 [order by 排序字段 asc/desc] [separator 『分隔符』] )

下面舉例說明:

以id分組,把price欄位的值在同一行列印出來,逗號分隔(預設)

以id分組,把price欄位的值在一行列印出來,分號分隔

以id分組,把去除重複冗餘的price欄位的值列印在一行,逗號分隔

以id分組,把price欄位的值去重列印在一行,逗號分隔,按照price倒序排列

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...