gpt4 book ai didi

mysql group by column name 除了相同的id

转载 作者:搜寻专家 更新时间:2023-10-30 20:53:45 25 4
gpt4 key购买 nike

我需要按客户 ID 不同的客户名称对结果进行分组。

select name , group_concat(cust_id) from customer group by name;

这是查询,但我不想对 cust_id 不相同的名称进行分组。例如


Name | Id
Customer1 | 1,2,3
Customer1 | 1
Customer2 | 4

上面的表记录 1,2 具有相同的名称但相同的 ID,因此它们没有分组。我需要这样的结果

最佳答案

试试这个查询

    select name , group_concat(cust_id) from(select name,cust_id from customer 
group by name,cust_id)a group by name;

关于mysql group by column name 除了相同的id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32002682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com