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
How can you fetch first 5 characters of the string?
What is the use of procedures?
What is the need of merge statement?
how to rename an existing column in a table? : Sql dba
What is a pragma statement?
How do you update a value in sql?
how to rename an existing table in mysql? : Sql dba
What is over () in sql?
Is sql better than excel?
Which is faster count (*) or count 1?
what are the limitations of identity column? : Transact sql
What are database links used for?
How many sql commands are there?
Why left join is used in sql?
what is foreign key? : Sql dba