vote up 3 vote down star
6

Using MySQL, I can do something like

select hobbies from peoples_hobbies where person_id = 5;

and get:

shopping
fishing
coding

but instead I just want 1 row, 1 col:

shopping, fishing, coding

The reason is that I'm selecting multiple values from multiple tables, and after all the joins I've got a lot more rows than I'd like.

I've looked for a function on MySQL Doc and it doesn't look like the CONCAT or CONCAT_WS functions accept result sets, so does anyone here know how to do this?

flag

I love that stack overflow is now showing up very highly on google searches google.co.uk/search?hl=en&q=concatenate+mysql… – Jon Winstanley Mar 20 at 12:11

7 Answers

vote up 17 vote down check

You can use GROUP_CONCAT.

As in:

select person_id, group_concat(hobbies separator ', ') from peoples_hobbies group by person_id;
link|flag
Nice timing. I was just writing that up :) – Dean Nov 10 '08 at 2:50
vote up 0 vote down

I think you can use GROUP BY key word, coz GROUP CONCAT is aggregate function

link|flag
vote up 0 vote down

you have saved my life GROUP_CONCAT!

link|flag
vote up 0 vote down

You could use php's implode and explode functions

to "implode":

<?php
$array = array('shopping', 'fishing', 'coding'); // filling an array
$comma_separated = implode(",", $array); // imploding the array
echo $comma_separated; // lastname,email,phone
?>

to "explode":

<?php

$array(explode('lastname,email,phone', $str, 2));

?>

or go here to see more about the implode and explode functions on php.net

link|flag
vote up 0 vote down

Thanks for your answer, that's why i'm looking for. But i have another problem, is that GROUP_CONCAT is limited to 1ko. And i need more.

How can i use more than 1ko for GROUP_CONCAT ???

link|flag
vote up 3 vote down

Have a look at group_concat if your MySQL version (4.1) supports it. See http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat for more details.

It would look something like:

select group_concat(hobbies separator ', ') 
  from peoples_hobbies where person_id = 5 group by 'all';
link|flag
Heh, 3 correct exactly the same answers all in the same minute. amazing. – Dean Nov 10 '08 at 2:51
vote up 0 vote down

There's a GROUP Aggregate function, GROUP_CONCAT.

Edit: I was writing this answer when I was caught-short by a yellow bar popping up at the top telling me someone else just posted the exact same answer. He is winner :)

link|flag

Your Answer

Get an OpenID
or

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