Answers for "how to add condition in group group_concat in mysql"

SQL
1

group_concat mysql

GROUP_CONCAT(expr);
Posted by: Guest on January-12-2021
0

mysql group concat

/* By deafult separe itens by "," */
group_concat(p.nameItem) as listProdItem
/* Used <br> to list itens one below the other in HTML page */
group_concat(p.nameItem separator '<br>') as listProdItem
Posted by: Guest on March-24-2021

Code answers related to "how to add condition in group group_concat in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language