gpt4 book ai didi

php - mysql 在 php 中分组

转载 作者:行者123 更新时间:2023-11-29 03:57:22 25 4
gpt4 key购买 nike

我有这样结构的mysql表:

id || groupid || name

1 || 23 || John
2 || 25 || Maria
3 || 23 || William

现在如何按组 ID 对其进行分组以获得此结果:

23 - John,William
25 - Maria

最佳答案

SELECT groupid, GROUP_CONCAT(name separator ',') as groupname FROM table GROUP BY groupid;

关于php - mysql 在 php 中分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13397755/

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