GROUP_CONCAT sql code example
Example 1: mysql group_concat distinct
SELECT GROUP_CONCAT(DISTINCT categories ORDER BY categories ASC SEPARATOR ' ') FROM table
Example 2: how to use group_concat in sql server
SELECT STRING_AGG(column_name, ',') AS Result
FROM table_name
Example 3: mysql separator
GROUP_CONCAT(artists.artistname SEPARATOR '----')
Example 4: group_concat mysql
GROUP_CONCAT(expr);
Example 5: group_concat in mysql
GROUP_CONCAT(eng_category_name SEPARATOR ',') as eng_category_name
Example 6: group_concat sql server
STRING_AGG ( expression, separator ) [ <order_clause> ]
<order_clause> ::=
WITHIN GROUP ( ORDER BY <order_by_expression_list> [ ASC | DESC ] )
SELECT STRING_AGG(Genre, ',') AS Result
FROM Genres;
Result:
Result
Rock,Jazz,Country,Pop,Blues,Hip Hop,Rap,Punk