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 the difference between delete and truncate statement in sql?
What is cursor in pl sql with examples?
Is there any restriction on the use of union in embedded sql?
how can we destroy the session, how can we unset the variable of a session? : Sql dba
Can you join a table to itself?
What is rank () in sql?
What is a unique constraint?
What is sql exception?
What is the difference between sql, mysql and sql server?
How do you update a sql procedure?
What is indexes?
What is difference between hql and sql?
What is an alias command?
What is difference between my sql and sql?
Is primary key clustered or nonclustered?