Użyj GROUP_CONCAT()
w tym celu za pomocą GROUP BY
obejmujące pozostałe trzy kolumny:
SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2
Użyj GROUP_CONCAT()
w tym celu za pomocą GROUP BY
obejmujące pozostałe trzy kolumny:
SELECT
name, -- Microsoft
other, -- GGG
other2, -- 1
GROUP_CONCAT(id) AS ids
FROM tbl
GROUP BY name, other, other2