tab1 tab2
1,a 1,d
2,b 3,c
perfoms outerjoin what is the o/p?
write sql query for outerjoin?

Answer Posted / karthi

select * from tab1 full outer join tab2 on
tab1.key_column=tab2.key_column;

or

select * from tab1,tab2 where tab1.key_column(+)=tab2.key_column
union
select * from tab1,tab2 where
tab1.key_column=tab2.key_column(+);

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the use of materialized view?

969


Describe the main features of datastage?

666


Highlight the main features of datastage?

625


What are the types of containers?

706


How can one find bugs in job sequence?

799






options available in sequence job to run,validate?

851


What are the different plug-ins stages used in your projects?

637


Have you used Unstructured data?

841


How a routine is called in datastage job?

619


how to delete one row in target dataset

2597


How rejected rows are managed in datastage?

939


Is possible to create skid in dim,fact tables?

2199


What are the important features of datastage?

625


How to read the length of word in unix?

898


What are the functionalities of link partitioner?

628