MySQL把多条数据给汇总成一条数据【转存】

MySQL把多条数据给汇总成一条数据【转存】_第1张图片

用到的是这个函数:

group_concat()
select group_buying_id,
group_concat(app_user_ids)
from org_user_group
group by group_buying_id

输出的结果:

MySQL把多条数据给汇总成一条数据【转存】_第2张图片

select group_buying_id,
group_concat(app_user_ids)
from org_user_group
where group_buying_id=10

这是查询一条

你可能感兴趣的:(数据库)