Possible Duplicate:
how to join 2 tables
I am very new to databases. I am trying two link to tables together, using a third map table. How do I go about doing this in oracle?
Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming two tables
AandBthat haveIDs of typeINT…You would map them with:
And store
A.IDinABCrossReference.A_IDandB.IDinABCrossReference.B_IDFinally you would
JOINthem together to get the data: