Use
GROUP_CONCAT()
para isso, com um GROUP BY
cobrindo as outras três colunas:SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2
GROUP_CONCAT()
para isso, com um GROUP BY
cobrindo as outras três colunas:SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2