If your MySQL version is 4.1 or later,
you could try GROUP_CONCAT

the query should be ( not tested ):

select id,GROUP_CONCAT(f2) from tablename group by id

regards,

     Giulio


Il giorno 05/ott/04, alle 17:20, Feghhi, Jalil ha scritto:


Is there a way to convert the following result set:

id              f2
---             ---
1               b
1               c

to:

id              f2
--              --
1               b,c

Using a select or any other functions? Basically, I want to put f2 fields together when ids are the same.

Thanks,

-Jalil

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]




Cantoberon Multimedia srl
http://www.cantoberon.it
Tel. 06 39737052


-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]



Reply via email to