MySQL Forums
Forum List  »  General

Re: Help with returning a comma delimited list
Posted by: gemithy gemithy
Date: March 01, 2005 07:54PM

How about u try this:

select projects.projectid, projects.createdby, projects.createdon, projects.projectname, projects.projectdesc, users.firstname, users.lastname
from projects, admin, users
where projects.projectid = projectassignment.projectid
and projectassignment.username = users.username
and projects.active = 1
and + ur other conditions

hope it helps?

Options: ReplyQuote


Subject
Written By
Posted
Re: Help with returning a comma delimited list
March 01, 2005 07:54PM


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.