gpt4 book ai didi

mysql - 在组查询中列出 id

转载 作者:IT老高 更新时间:2023-10-29 00:02:18 26 4
gpt4 key购买 nike

我想为每个具有唯一 amountoperationmonthsfee 的数据集群返回一行 为给定的 id。

表格如下:

enter image description here

我几乎可以得到我想要的东西

SELECT amount, operation, months, fee, plan_id
FROM promo_discounts
WHERE promo_id = 1
GROUP BY amount, operation, months, fee

会得到:

enter image description here

但请注意,当我希望它返回类似 1, 2, 3

时,它只返回一个 plan_id

这可能吗?

最佳答案

您可以使用 GROUP_CONCAT

SELECT amount, operation, months, fee, 
GROUP_CONCAT(DISTINCT plan_id SEPARATOR ',') AS plan_id
FROM promo_discounts
WHERE promo_id = 1
GROUP BY amount, operation, months, fee

但请注意,默认的最大长度为 1024,因此如果您使用大表执行此操作,则可能会截断值...

关于mysql - 在组查询中列出 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8567164/

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