You can use GROUP_CONCAT
:
(您可以使用GROUP_CONCAT
:)
SELECT person_id, GROUP_CONCAT(hobbies SEPARATOR ', ')
FROM peoples_hobbies
GROUP BY person_id;
As Ludwig stated in his comment, you can add the DISTINCT
operator to avoid duplicates:
(正如路德维希(Ludwig)在其评论中所述,您可以添加DISTINCT
运算符以避免重复:)
SELECT person_id, GROUP_CONCAT(DISTINCT hobbies SEPARATOR ', ')
FROM peoples_hobbies
GROUP BY person_id;
As Jan stated in their comment, you can also sort the values before imploding it using ORDER BY
:
(正如Jan在他们的评论中所述,您还可以在使用ORDER BY
爆破之前对值进行排序:)
SELECT person_id, GROUP_CONCAT(hobbies ORDER BY hobbies ASC SEPARATOR ', ')
FROM peoples_hobbies
GROUP BY person_id;
As Dag stated in his comment, there is a 1024 byte limit on the result.
(正如达格(Dag)在其评论中所述,结果限制为1024个字节。)
To solve this, run this query before your query: (要解决此问题,请在查询之前运行以下查询:)
SET group_concat_max_len = 2048;
Of course, you can change 2048
according to your needs.
(当然,您可以根据需要更改2048
。)
To calculate and assign the value: (要计算和分配值:)
SET group_concat_max_len = CAST(
(SELECT SUM(LENGTH(hobbies)) + COUNT(*) * LENGTH(', ')
FROM peoples_hobbies
GROUP BY person_id)
AS UNSIGNED
);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…