MySQL Forums
Forum List  »  Newbie

Re: SQL help
Posted by: Ramalingam Chelliah
Date: August 15, 2004 09:44PM

Hi,
Did you try this ?
( Assuming "project" table with columns "projectManager" & "principal"

"user" table with columns "userID" & "username"
and "projectManager" and "userID" columns are similar
)


SELECT user.username,project.principal
FROM project,user
WHERE project.projectManager=user.userID ;

Hope this helps

Regards,
Ram.

Options: ReplyQuote


Subject
Written By
Posted
August 15, 2004 04:30PM
Re: SQL help
August 15, 2004 09:44PM


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.