MySQL Forums
Forum List  »  Newbie

Re: Merging the results of multiple tables
Posted by: Chris Stubben
Date: March 26, 2005 07:02AM

Hi,

The GROUP_CONCAT() function in 4.1 is really useful, you can even order the list by a column name and change the delimiter (default is a comma).

http://dev.mysql.com/doc/mysql/en/group-by-functions.html

Your query would look something like this.

SELECT u.name, u.alias, GROUP_CONCAT(s.song),
FROM users u, songs s
where u.id=s.user_id
GROUP BY u.name, u.alias;


Chris

Options: ReplyQuote


Subject
Written By
Posted
Re: Merging the results of multiple tables
March 26, 2005 07:02AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.