Je moet eerst CONCAT
de gegevens van elk gespecificeerd veld en pas GROUP_CONCAT
. toe OP het resultaat.
Zoekopdracht
SELECT GROUP_CONCAT(temp_col) FROM
(
SELECT 1 as 'temp_id',
CONCAT(
CONCAT('PO=', PO),
',',
CONCAT('DAP=', DAP),
',',
CONCAT('MEDIA=', MEDIA)
) AS 'temp_col'
FROM test
) temp
GROUP BY temp_id
Bekijk SQLFIDDLE