vote up 1 vote down star

In short: Is there any way to sort the values in a GROUP_CONCAT statement?

Query:

GROUP_CONCAT((SELECT GROUP_CONCAT(parent.name SEPARATOR " » ") 
FROM test_competence AS node, test_competence AS parent 
WHERE node.lft BETWEEN parent.lft AND parent.rgt 
  AND node.id = l.competence 
  AND parent.id != 1 
ORDER BY parent.lft) SEPARATOR "<br />\n") AS competences

I get this row:

Crafts » Joinery

Administration » Organization

I want it like this:

Administration » Organization

Crafts » Joinery

flag

42% accept rate

2 Answers

vote up 1 vote down

do you mean to order by ?

SELECT _key, COUNT(*) as cnt, GROUP_CONCAT(_value ORDER BY _value SEPARATOR ', ') as value_list FROM group_concat_test GROUP BY _key ORDER BY _key;

link|flag
vote up 4 vote down

Sure, see http://dev.mysql.com/doc/refman/...tions.html#function_group-concat:

SELECT student_name,
  GROUP_CONCAT(DISTINCT test_score ORDER BY test_score DESC SEPARATOR ' ')
  FROM student
  GROUP BY student_name;
link|flag
+1, faster than me :) – Paul Dixon Jun 15 at 10:28
Thanks, Paul. I'm all coffee'd up this morning ;) – Jonathan Sampson Jun 15 at 10:29
Ivarska, update your original post with your example query. – Jonathan Sampson Jun 15 at 10:33
Done. Sad that you can't put code in comments... – Ivarska Jun 15 at 10:35
Your code is heavily relied upon for your specific answer, and therefore should not be placed anywhere but your original post. If you put it here in this comment, many programmers here won't see it, and you won't get the best possible response :) – Jonathan Sampson Jun 15 at 10:38
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.