How to Concate rows with comma-separeted in MySQL?

 Posted by vishalneeraj-24503 on 12/5/2013 | Category: Others Interview questions | Views: 2287 | Points: 40
Answer:

With the help of Group_Concat in-built MySQL function,we can append rows values with Comma.

For Example:-

Select Group_Concat(employee_name) from employee_master;


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response