gpt4 book ai didi

mysql - GROUP CONCAT 由于某种原因不工作

转载 作者:IT王子 更新时间:2023-10-29 00:38:47 28 4
gpt4 key购买 nike

我正在形成一个选择语句并收到此错误。

FUNCTION GROUP_CONCAT does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference Manual

我不明白这一点,因为组 concats 使用了有人给我的代码,我用它来构建我的新代码。这是它的外观

SELECT
`shirts`.`shirt_name`,
`shirts`.`men` AS `main_photo`,
GROUP_CONCAT (`shirt_sizes`.`size_name`) AS `sizes`
FROM
`shirts`
JOIN
`shirts_link` ON `shirts_link`.`shirt_id`=`shirts`.`id`
JOIN
`shirt_sizes` ON `shirt_sizes`.`id`=`shirts_link`.`size_id`
JOIN
`shirt_prices` ON `shirt_prices`.`id`=`shirts_link`.`price_id`
WHERE `men`!=''
GROUP BY
`shirt_prices`.`price_cat`

有人可以帮忙吗?

最佳答案

函数名和括号之间不能有空格。变化

GROUP_CONCAT (`shirt_sizes`.`size_name`) AS `sizes`

GROUP_CONCAT(`shirt_sizes`.`size_name`) AS `sizes`

关于mysql - GROUP CONCAT 由于某种原因不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14096153/

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