up vote 32 down vote favorite
18
share [g+] share [fb]

Basically the question is how to get from this:

id    string
1          A
1          B
2          C

to this:

id    string
1          A B
2          C
link|improve this question

feedback

5 Answers

up vote 45 down vote accepted

SELECT id, GROUP_CONCAT(string SEPARATOR ' ') FROM table GROUP BY id;

http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat

link|improve this answer
feedback

SELECT id, GROUP_CONCAT( string SEPARATOR ' ') FROM table GROUP BY id

More details here.

link|improve this answer
1  
You were slightly faster than Scott Neyes, but I decided to accept his answer. With ~25 rep points it makes a difference. Thanks. – PaweÅ‚ Hajdan Sep 29 '08 at 17:49
No problem - I even upvoted his answer. :-) – Graeme Perrow Sep 29 '08 at 19:29
6  
More than two years later, Scott's answer (identical to mine) has 20 more upvotes than mine, and not only does he have no other answers, he hasn't even visited StackOverflow since posting it. Not a complaint, I just found it amusing. – Graeme Perrow Dec 15 '10 at 12:14
feedback
SELECT id, GROUP_CONCAT(CAST(string as CHAR)) FROM table GROUP BY id

Will give you a comma-delimited string

link|improve this answer
feedback

SET group_concat_max_len=100000000

link|improve this answer
feedback

GROUP_CONCAT has max data size limit 1024 and can be increased upto 67107840.How can we resolve this when large data retrieval is required.Can any on reply soon

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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