SELECT id, GROUP_CONCAT(name SEPARATOR ' ') FROM table GROUP BY id;
https://dev.mysql.com /doc/refman/8.0/en/aggregate-functions.html#function_group-concat
No link acima,
GROUP_CONCAT
:Esta função retorna um resultado de string com os valores não NULL concatenados de um grupo. Retorna NULL se não houver valores não NULL.