参考表中的分组数据

时间:2019-04-23 08:51:02

标签: mysql sql

我在MySQL 5.6中有一个引用表cast([dbo].[myFunction](param1, param2, param3)as decimal(20,2)) as Total ,看起来像:

user_client

如何查询此表以按user_id | client_id ------------------- 1 | 1 1 | 2 1 | 3 2 | 1 2 | 3 分组结果,例如:

user_id

谢谢!

1 个答案:

答案 0 :(得分:3)

使用group_concat()

select user_id, group_concat(client_id)
from tablename
group by user_id