vote up 8 vote down star
2

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
flag

4 Answers

vote up 14 vote down check

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|flag
vote up 4 vote down

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

More details here.

link|flag
You were slightly faster than Scott Neyes, but I decided to accept his answer. With ~25 rep points it makes a difference. Thanks. – phjr Sep 29 '08 at 17:49
No problem - I even upvoted his answer. :-) – Graeme Perrow Sep 29 '08 at 19:29
vote up 2 vote down
SELECT id, GROUP_CONCAT(CAST(string as CHAR)) FROM table GROUP BY id

Will give you a comma-delimited string

link|flag
vote up 1 vote down

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

Your Answer

Get an OpenID
or

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