web-dev-qa-db-ja.com

GROUP_CONCAT ORDER BY

テーブル のような:

+-----------+-------+------------+
| client_id | views | percentage |
+-----------+-------+------------+
|         1 |     6 |         20 |
|         1 |     4 |         55 |
|         1 |     9 |         56 |
|         1 |     2 |         67 |
|         1 |     7 |         80 |
|         1 |     5 |         66 |
|         1 |     3 |         33 |
|         1 |     8 |         34 |
|         1 |     1 |         52 |

group_concatを試しました:

SELECT li.client_id, group_concat(li.views) AS views,  
group_concat(li.percentage) FROM li GROUP BY client_id;

+-----------+-------------------+-----------------------------+
| client_id | views             | group_concat(li.percentage) |
+-----------+-------------------+-----------------------------+
|         1 | 6,4,9,2,7,5,3,8,1 | 20,55,56,67,80,66,33,34,52  |
+-----------+-------------------+-----------------------------+

しかし、次のようにビューを順番に取得したい:

+-----------+-------------------+----------------------------+
| client_id | views             | percentage                 |
+-----------+-------------------+----------------------------+
|         1 | 1,2,3,4,5,6,7,8,9 | 52,67,33,55,66,20,80,34,56 |
+-----------+-------------------+----------------------------+
111
ronquiq

この方法で、ORDER BY関数内で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
250
aleroot

Group_concatは独自のorder by句をサポートします

http://mahmudahsan.wordpress.com/2008/08/27/mysql-the-group_concat-function/

だからあなたは書くことができるはずです:

SELECT li.clientid, group_concat(li.views order by views) AS views,
group_concat(li.percentage order by percentage) 
FROM table_views GROUP BY client_id
14
TetonSig

試して

SELECT li.clientid, group_concat(li.views ORDER BY li.views) AS views,
       group_concat(li.percentage ORDER BY li.percentage) 
FROM table_views li 
GROUP BY client_id

http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function%5Fgroup-concat

10
Virendra

IMPALAでは、Coders'Coで、GROUP_CONCATに順序がないことが問題になる場合があります。そのための何らかの回避策があります(Rax/Impalaに必要です)。 IMPALAでORDER BY句を含むGROUP_CONCATの結果が必要な場合は、このブログ投稿をご覧ください: http://raxdb.com/blog/sorting-by-regex/

1
JMS