我正在形成一个选择语句并收到此错误。
FUNCTION GROUP_CONCAT 不存在。检查参考手册中的“函数名称解析和解析”部分
我不明白这一点,因为组 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`
有人可以帮忙吗?