groupe par mysql et chaîne de concaténate

mysql> select Id,group_concat(Name SEPARATOR ',') as GroupConcatDemo from GroupConcatenateDemo
   -> group by Id;
Nutty Narwhal