Answers for "group concat use in where mysql"

SQL
4

group by mysql and concatenate string

mysql> select Id,group_concat(Name SEPARATOR ',') as GroupConcatDemo from GroupConcatenateDemo
   -> group by Id;
Posted by: Guest on August-04-2020
0

mysql where in maintain order group_concat

SELECT li.client_id, group_concat(li.percentage ORDER BY li.views ASC) AS views, 
group_concat(li.percentage ORDER BY li.percentage ASC) 
FROM li GROUP BY client_id
Posted by: Guest on May-20-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language