How do you get all records from 2 tables. Which join do you use?
Answer Posted / selvaraj v , anna univ coe
Use Full Outer Join in Oracle 10g :
SELECT p.part_id,s.supplier_name FROM part p
FULL OUTER JOIN
supplier s ON p.supplier_idv = s.supplier_id;
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is left join example?
Can we use views in stored procedure?
Does sql between include endpoints?
Are sql database names case sensitive?
What is normalisation and its types?
What is cartesian join in sql?
How we can create a table in pl/sql block. Insert records into it? Is it possible by some procedure or function? Please give example?
What is thread join () in threading?
How to change the order of columns in Oracle SQL Plus ?
What is sql partition?
How to handle bulk data?
What is a full join sql?
How do I order columns in sql?
How do I copy a table in sql?
What is pragma in sql?