Answers for "mysql in clause group_concat"

SQL
0

group_concat in mysql

GROUP_CONCAT(eng_category_name SEPARATOR ',') as eng_category_name
Posted by: Guest on February-26-2021
0

group_concat mysql

//returns the concatenated string from multiple rows into a single string
 SELECT emp_id, emp_fname, emp_lname, dept_id,     
GROUP_CONCAT(designation) as "designation" FROM employee group by emp_id;
Posted by: Guest on December-31-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language