gpt4 book ai didi

mysql - 如何在 GROUP_CONCAT 之前连接字符串

转载 作者:行者123 更新时间:2023-11-29 01:10:11 24 4
gpt4 key购买 nike

如何在 GROUP_CONCAT 之前为字段添加前缀

这个

id       test_id         1           4              2           4             2           5            3           5           1           51           6

id       test_id         1           id_4,id_5,id_6              2           id_4,id_5             3           id_5            

我希望 id_ 以 test_id 为前缀,然后才能通过 MySQL 中的 GROUP_CONCAT 获取它

最佳答案

SELECT
id,
GROUP_CONCAT(CONCAT('id_', test_id))
FROM
your_table
GROUP BY id

关于mysql - 如何在 GROUP_CONCAT 之前连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12854910/

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