web-dev-qa-db-fra.com

GROUP_CONCAT ORDER BY

J'ai ne table comme:

+-----------+-------+------------+
| 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 |

J'ai essayé 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  |
+-----------+-------------------+-----------------------------+

Mais je veux mettre de l'ordre dans les vues, comme:

+-----------+-------------------+----------------------------+
| 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

Vous pouvez utiliser ORDER BY à l'intérieur de GROUP_CONCAT fonctionnent de cette manière:

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

Le group_concat supporte sa propre clause order by

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

Donc, vous devriez pouvoir écrire:

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

Essayer

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

Dans IMPALA, ne pas avoir d'ordre dans GROUP_CONCAT peut être problématique, chez Coders'Co. nous avons une solution pour cela (nous en avons besoin pour Rax/Impala). Si vous avez besoin du résultat GROUP_CONCAT avec une clause ORDER BY dans IMPALA, consultez cet article de blog: http://raxdb.com/blog/sorting-by-regex/

1
JMS