Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

inner join and outer join

Former Member
0 Likes
752

hi,

what is the diff b/w inner join and outer join?

thanks regards,

kiran.

hi,

what is the diff b/w inner join and outer join?

thanks regards,

kiran.

5 REPLIES 5
Read only

Former Member
0 Likes
707

hi Kiran,

Check these to know the difference..

http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21ec77446011d189700000e8322d00/frameset.htm

Regards,

Santosh

Note: Reward Points if helpful

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
707

<i>

In an inner join, a line from the left-hand database table or join is only included in the selection if there is one or more lines in the right-hand database table that meet the ON condition <cond>. The left outer join, on the other hand, reads lines from the left-hand database table or join even if there is no corresponding line in the right-hand table.

</i>

http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/frameset.htm

Regards,

Rich Heilman

Read only

Former Member
0 Likes
707

There is nothing called outer join.

There wil be only inner join which means you are slecting entries from both tables only if it meets the codition that the secong table's field matches with the first table's field.

REgards,

Ravi

Read only

0 Likes
707

Ravi, there is an "outer join".

Read the links provided.

Regards,

Rich Heilman

Read only

0 Likes
707

Note that Dr. Codd (the father of the Relational Database) created inner and outer joins based on the mathematical concepts of Unions and Intersections.