Re: SQL help
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.
Subject
Written By
Posted
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.