What is a OUTER JOIN?

Outer Join--Its a join condition used where you can query all the rows of one of the tables in the join condition even though they don’t satisfy the join condition.

Showing Answers 1 - 17 of 17 Answers

sithusithu

  • Jan 24th, 2006
 

A join that links two tables, one of which has rows that do not match those in the common column of the other table

 

Cheers,

Sithu

  Was this answer useful?  Yes

Mainak Aich

  • Mar 2nd, 2006
 

Suppose we have two tables.Now with the help of outer join,we can add those rows of a table which doesn't matchs the join condition.e.gtable a table bname roll name roll m 1 m 1n 2 n 2o 3 g 7p 4 h 8so the sql for adding all information of table a into the result will be:select name,roll from a,b where a.name=b.name(+);just run the sql to see the result .you can alternatively use the + on the left side to view another result.

  Was this answer useful?  Yes

Rohan Deshpande

  • Jan 29th, 2007
 

when the rows that don't meet the join condition. then we use outer join...

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions