Necesitará GROUP_CONCAT
y CONCAT
funciones mysql y la consulta debería verse así:
SELECT GROUP_CONCAT( CONCAT( id, ' ', name, ' ', city, ' ', state) SEPARATOR ' ')
FROM students
GROUP BY (1)
O puede usar CONCAT_WS
en cambio:
CONCAT_WS(' ', id, name, city, state)