是否可以执行以下操作:
GROUP_CONCAT(user, price SEPARATOR ', ') AS items
结果为John3.99, Mike24.99
我需要的是:
John - 3.99, Mike - 24.99
基本上在价格字段中使用其他类型的分隔符。
答案 0 :(得分:12)
GROUP_CONCAT(CONCAT(user, ' - ', price) SEPARATOR ', ') AS items
或者只是
GROUP_CONCAT(user, ' - ', price SEPARATOR ', ') AS items
答案 1 :(得分:0)
试试这种方式
GROUP_CONCAT(
DISTINCT CONCAT(user,',',Price SEPERATOR)
ORDER BY items
SEPARATOR ';'
)