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 a schema sql?
What are instead of triggers?
What are the ways on commenting in a pl/sql code?
how can you create an empty table from an existing table? : Sql dba
What are the different ddl commands in sql?
Is merge a dml statement?
Describe sql comments?
Why do we use function in pl sql?
Does truncate table reset auto increment?
Does group by remove duplicates?
Does truncate free space?
What is a pl/sql block?
Explain the steps needed to create the scheduled job?
what are the difference between clustered and a non-clustered index? : Sql dba
What is execution plan in sql?