GROUP_CONCAT separator¶
When using GROUP_CONCAT
, you can specify a custom separator
SELECT
GROUP_CONCAT(
a.`field`
SEPARATOR '␟'
) AS `fields`;
When using GROUP_CONCAT
, you can specify a custom separator
SELECT
GROUP_CONCAT(
a.`field`
SEPARATOR '␟'
) AS `fields`;