Use GROUP_CONCAT()
para ello, con un GROUP BY
cubriendo las otras tres columnas:
SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2
Use GROUP_CONCAT()
para ello, con un GROUP BY
cubriendo las otras tres columnas:
SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2