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
Dal link sopra, GROUP_CONCAT
:questa funzione restituisce un risultato stringa con i valori non NULL concatenati da un gruppo. Restituisce NULL se non sono presenti valori diversi da NULL.