group_concat(A,\' \',B,\' \',C) as Name,
then using this php for displaying
For MySQL (or plain text) output You could use \n as a separator:
\n
SELECT GROUP_CONCAT(column1 SEPARATOR '\n') FROM table1;
I use this very often when I need to get many new-line-separated values in one row for other processing.