Vous devez d'abord CONCAT
les données de chaque champ spécifié et appliquez GROUP_CONCAT
SUR le résultat.
Requête
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
Découvrez SQLFIDDLE