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


Please Help Members By Posting Answers For Below Questions

Which function is used to return remainder in a division operator in sql?

590


What is pivot query?

598


What is a schema sql?

537


What is an exception in PL/SQL? What are the two types of exceptions?

633


What are different types of indexes?

516






what is the difference between where clause and having clause? : Sql dba

543


Are stored procedures faster than queries?

526


why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba

566


How do I run a pl sql program?

635


What is primary and foreign key?

599


What is Collation Sensitivity ? What are the various type ?

504


Is sql open source?

550


what is the difference between char_length and length? : Sql dba

576


What are the different types of dbms?

559


What is a trigger word?

518