<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: inner join vs outer join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559792#M856574</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you wish to get data from two related tables, you can use an inner join or an outer join to define how the data is related.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For my examples, let's assume where is a table called "student" to hold student information, a table called "attendance" to hold student's attendance, and a table called StudentSchedule that holds a student's current schedule:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Student has the following fields:&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;FirstName&lt;/P&gt;&lt;P&gt;LastName&lt;/P&gt;&lt;P&gt;BirthDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attendance has the following fields:&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;AttendanceDate&lt;/P&gt;&lt;P&gt;AttendanceCode&lt;/P&gt;&lt;P&gt;MinutesAbsent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StudentSchedule as the following fields:&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;Course&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An inner join gets data from both tables where the specified data exists in both tables. For example, if you wanted a list of students in your database that were absent on December 4, 2003, you would use an inner join between the two examples tables "Student" and "Attendance":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Student.ID, Student.FirstName, Student.LastName,&lt;/P&gt;&lt;P&gt;Attendance.AttendanceCode,&lt;/P&gt;&lt;P&gt;Attendance.MinutesAbsent FROM Student INNER JOIN Attendance&lt;/P&gt;&lt;P&gt;ON Student.ID=Attendance.ID&lt;/P&gt;&lt;P&gt;WHERE Attendance.AttendanceDate=' 12/4/2003'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above statement will only return students with attendance information on the specified date. Students who do not have attendance would not display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like so:&lt;/P&gt;&lt;P&gt;ID FirstName LastName AttendanceCode MinutesAbsent&lt;/P&gt;&lt;P&gt;10 Steve Bartman Tardy 22&lt;/P&gt;&lt;P&gt;32 Dale Thropmorton ExcAbsent 200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(maybe there are 200 kids in the database, but only Steve and Dale where absent on 12/4/2003. They are the only students to display)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An outer join gets data from the source table at all times, and returns data from the outer joined table ONLY if it matches the criteria. You would use this type of join using my examples tables if you wanted a list of all students in a specified course, and you wanted attendance information if it existed. You would use an inner join between Student and StudentSchedule to only get the students in the speicified course (for example 'ENGLISH 9'), but you would use an outer join against Attendance because you want ALL students in the course, not just students with attendance information on 12/4/2003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using outer joins, fields will be set to NULL if data does not exist in the outer-joined table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Student.ID, Student.FirstName, Student.LastName,&lt;/P&gt;&lt;P&gt;Attendance.AttendanceCode,&lt;/P&gt;&lt;P&gt;Attendance.MinutesAbsent &lt;/P&gt;&lt;P&gt;FROM Student &lt;/P&gt;&lt;P&gt;INNER JOIN StudentSchedule ON&lt;/P&gt;&lt;P&gt;StudentSchedule.ID=Student.ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT OUTER JOIN Attendance ON &lt;/P&gt;&lt;P&gt;Student.ID=Attendance.ID AND&lt;/P&gt;&lt;P&gt;Attendance.AttendanceDate=' 12/4/2003'&lt;/P&gt;&lt;P&gt;WHERE StudentSchedule.Course='E NGLISH 9'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID FirstName LastName AttendanceCode MinutesAbsent&lt;/P&gt;&lt;P&gt;10 Steve Bartman Tardy 22&lt;/P&gt;&lt;P&gt;32 Dale Thropmorton ExcAbsent 200&lt;/P&gt;&lt;P&gt;44 Jennifer Lopez NULL NULL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Steve, Dale, and Jennifer all all in English. Steve and Dale were absent but Jennifer was not)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice how the AttendanceDate filter is in the ON clause instead of the WHERE clause. This is because joins are processed first and then filter information is applied afterwords. If "Attendance.AttendanceDat e='12/4/2003'" was put into the WHERE clause of the statement, the outer join would basically turn back into an inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourabh verma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Mar 2008 11:50:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-28T11:50:48Z</dc:date>
    <item>
      <title>inner join vs outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559789#M856571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;respected sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may i know what is inner join and outer join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what diff b/w these two &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 11:43:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559789#M856571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T11:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: inner join vs outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559790#M856572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data that can be selected with a view depends primarily on whether the view implements an inner join or an outer join. With an inner join, you only get the records of the cross-product for which there is an entry in all tables used in the view. With an outer join, records are also selected for which there is no entry in some of the tables used in the view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The set of hits determined by an inner join can therefore be a subset of the hits determined with an outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database views implement an inner join. The database therefore only provides those records for which there is an entry in all the tables used in the view. Help views and maintenance views, however, implement an outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this link also &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/67/7e4b3eaf72561ee10000000a114084/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/67/7e4b3eaf72561ee10000000a114084/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Brown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Brown on Mar 28, 2008 12:47 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Brown on Mar 28, 2008 12:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 11:45:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559790#M856572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T11:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: inner join vs outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559791#M856573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data that can be selected with a view depends primarily on whether the view implements an inner join or an outer join. With an inner join, you only get the records of the cross-product for which there is an entry in all tables used in the view. With an outer join, records are also selected for which there is no entry in some of the tables used in the view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The set of hits determined by an inner join can therefore be a subset of the hits determined with an outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database views implement an inner join. The database therefore only provides those records for which there is an entry in all the tables used in the view. Help views and maintenance views, however, implement an outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 11:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559791#M856573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T11:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: inner join vs outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559792#M856574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you wish to get data from two related tables, you can use an inner join or an outer join to define how the data is related.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For my examples, let's assume where is a table called "student" to hold student information, a table called "attendance" to hold student's attendance, and a table called StudentSchedule that holds a student's current schedule:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Student has the following fields:&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;FirstName&lt;/P&gt;&lt;P&gt;LastName&lt;/P&gt;&lt;P&gt;BirthDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attendance has the following fields:&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;AttendanceDate&lt;/P&gt;&lt;P&gt;AttendanceCode&lt;/P&gt;&lt;P&gt;MinutesAbsent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StudentSchedule as the following fields:&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;Course&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An inner join gets data from both tables where the specified data exists in both tables. For example, if you wanted a list of students in your database that were absent on December 4, 2003, you would use an inner join between the two examples tables "Student" and "Attendance":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Student.ID, Student.FirstName, Student.LastName,&lt;/P&gt;&lt;P&gt;Attendance.AttendanceCode,&lt;/P&gt;&lt;P&gt;Attendance.MinutesAbsent FROM Student INNER JOIN Attendance&lt;/P&gt;&lt;P&gt;ON Student.ID=Attendance.ID&lt;/P&gt;&lt;P&gt;WHERE Attendance.AttendanceDate=' 12/4/2003'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above statement will only return students with attendance information on the specified date. Students who do not have attendance would not display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like so:&lt;/P&gt;&lt;P&gt;ID FirstName LastName AttendanceCode MinutesAbsent&lt;/P&gt;&lt;P&gt;10 Steve Bartman Tardy 22&lt;/P&gt;&lt;P&gt;32 Dale Thropmorton ExcAbsent 200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(maybe there are 200 kids in the database, but only Steve and Dale where absent on 12/4/2003. They are the only students to display)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An outer join gets data from the source table at all times, and returns data from the outer joined table ONLY if it matches the criteria. You would use this type of join using my examples tables if you wanted a list of all students in a specified course, and you wanted attendance information if it existed. You would use an inner join between Student and StudentSchedule to only get the students in the speicified course (for example 'ENGLISH 9'), but you would use an outer join against Attendance because you want ALL students in the course, not just students with attendance information on 12/4/2003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using outer joins, fields will be set to NULL if data does not exist in the outer-joined table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Student.ID, Student.FirstName, Student.LastName,&lt;/P&gt;&lt;P&gt;Attendance.AttendanceCode,&lt;/P&gt;&lt;P&gt;Attendance.MinutesAbsent &lt;/P&gt;&lt;P&gt;FROM Student &lt;/P&gt;&lt;P&gt;INNER JOIN StudentSchedule ON&lt;/P&gt;&lt;P&gt;StudentSchedule.ID=Student.ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT OUTER JOIN Attendance ON &lt;/P&gt;&lt;P&gt;Student.ID=Attendance.ID AND&lt;/P&gt;&lt;P&gt;Attendance.AttendanceDate=' 12/4/2003'&lt;/P&gt;&lt;P&gt;WHERE StudentSchedule.Course='E NGLISH 9'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID FirstName LastName AttendanceCode MinutesAbsent&lt;/P&gt;&lt;P&gt;10 Steve Bartman Tardy 22&lt;/P&gt;&lt;P&gt;32 Dale Thropmorton ExcAbsent 200&lt;/P&gt;&lt;P&gt;44 Jennifer Lopez NULL NULL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Steve, Dale, and Jennifer all all in English. Steve and Dale were absent but Jennifer was not)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice how the AttendanceDate filter is in the ON clause instead of the WHERE clause. This is because joins are processed first and then filter information is applied afterwords. If "Attendance.AttendanceDat e='12/4/2003'" was put into the WHERE clause of the statement, the outer join would basically turn back into an inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourabh verma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 11:50:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559792#M856574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T11:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: inner join vs outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559793#M856575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check these to know the difference..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21ec77446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21ec77446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 11:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559793#M856575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T11:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: inner join vs outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559794#M856576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data that can be selected with a view depends primarily on whether the view implements an inner join or an outer join. With an inner join, you only get the records of the cross-product for which there is an entry in all tables used in the view. With an outer join, records are also selected for which there is no entry in some of the tables used in the view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The set of hits determined by an inner join can therefore be a subset of the hits determined with an &lt;STRONG&gt;outer join&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database views implement an inner join. The database therefore only provides those records for which there is an entry in all the tables used in the view. Help views and maintenance views, however, implement an outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer to below link&lt;/P&gt;&lt;P&gt; &lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/cf/21ec77446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/cf/21ec77446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Main Didfference is that with inner join we get records common in the tables.(like intersection)&lt;/P&gt;&lt;P&gt;and with outer join  we get all the records (jst like union)&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 11:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559794#M856576</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-03-28T11:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: inner join vs outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559795#M856577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example below are the 2 tables and their values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 A                        B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               1000                  1000 A&lt;/P&gt;&lt;P&gt;               2000                  1000 B&lt;/P&gt;&lt;P&gt;               3000                   3000 C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join will fetch the common records as like follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1000 A&lt;/P&gt;&lt;P&gt;1000 B&lt;/P&gt;&lt;P&gt;3000 C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is the case of outer join the output will be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 1000  A&lt;/P&gt;&lt;P&gt; 1000  B&lt;/P&gt;&lt;P&gt; 2000&lt;/P&gt;&lt;P&gt; 3000  C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanki.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 11:57:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-vs-outer-join/m-p/3559795#M856577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T11:57:45Z</dc:date>
    </item>
  </channel>
</rss>

