Gebruik GROUP_CONCAT()
hiervoor, met een GROUP BY
voor de andere drie kolommen:
SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2
Gebruik GROUP_CONCAT()
hiervoor, met een GROUP BY
voor de andere drie kolommen:
SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2