Você está procurando por GROUP_CONCAT( )
Tente isto:
select group_concat(MyString separator ', ') as myList from table
where id < 4
Claro, você pode
group by os resultados. select group_concat(MyString separator ', ') as myList from table
where id < 4
group by os resultados.