Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


full outer join syntax

Answers were Sorted based on User's Feedback



full outer join syntax..

Answer / thiyagarajan

select table1.columnname1,table2.columnname2
from
table1 full outer join table2
on
table1.colname=table2.colname

Is This Answer Correct ?    13 Yes 1 No

full outer join syntax..

Answer / madhav

Full outer join

select e.empno,e.ename,e.deptno,e.sal,d.deptno,d.dname from
emp e full outer join dept d
on e.deptno=d.deptno;

Is This Answer Correct ?    0 Yes 0 No

full outer join syntax..

Answer / avi007

full outer join -

select * from table1,table2 where
table1.columnname(+)=table2.colunmname;
union
select * from table1,table2 where
table1.columnname =table2.colunmname(+);

Is This Answer Correct ?    0 Yes 2 No

full outer join syntax..

Answer / naresh

select * from table full outer join tablename2;

or

select * from table1,table2 where
table1.columnname(+)=table2.colunmname(+);

Is This Answer Correct ?    1 Yes 4 No

full outer join syntax..

Answer / ambedkar

At first Full outer join is never not possible.

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More SQL PLSQL Interview Questions

Why is %isopen always false for an implicit cursor?

0 Answers  


what is the difference between truncate and delete statement? : Transact sql

0 Answers  


what is meant by databases

4 Answers  


What is dba in sql? : SQL DBA

0 Answers  


what is 'mysqlcheck'? : Sql dba

0 Answers  


What is sql dialect?

0 Answers  


declare l1 number := null; l2 number :=null; begin if l1=l2 then message('equal'); else if l1<>l2 then message('not equal'); else message('else'); end if; end if; end; What will be the output ?

7 Answers   Oracle,


how do you count the duplicate records in a table

10 Answers   Tech Mahindra,


What is constant in pl sql?

0 Answers  


what are the nonstandard string types? : Sql dba

0 Answers  


what is the command line end user interface - mysql? : Sql dba

0 Answers  


How many functions are there in sql?

0 Answers  


Categories