<?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: join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439111#M545802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't think that there is such a thing as a RIght Outer Join in Open SQL within ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 15:53:55 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2007-06-21T15:53:55Z</dc:date>
    <item>
      <title>join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439109#M545800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the difference between left outer join and right outer join?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 15:42:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439109#M545800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T15:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439110#M545801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AFAIK it works like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You got TABLE1 and TABLE2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using LEFT OUTER JOIN gathers all records from TABLE1 that are not present on TABLE2...And RIGHT OUTER JOIN does the same in reversal order...It gather all records from TABLE2 that are not present on TABLE1....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To me it's just a matter of taste....Because it depends on the order of your tables in the query -;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 15:53:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439110#M545801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T15:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439111#M545802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't think that there is such a thing as a RIght Outer Join in Open SQL within ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb39c4358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 15:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439111#M545802</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-21T15:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439112#M545803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;INNER JOIN: Retrieves customers with orders only. For example, you want to determine the amount ordered by each customer and you only want to see those who have ordered something&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Customers.&lt;STRONG&gt;, Orders.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;FROM Customers INNER JOIN Orders ON Customers.CustomerID =&lt;/P&gt;&lt;P&gt;Orders.CustomerID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT OUTER JOIN: Retrieves all customers with or without orders. Order data for customers without orders appears as NULL values. For example, you want to determine the amount ordered by each customer and you need to see who has not ordered anything as well. You can also see the LEFT OUTER JOIN as a mirror image of the RIGHT OUTER JOIN if you switch the side of each table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Customers.&lt;STRONG&gt;, Orders.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;FROM Customers LEFT OUTER JOIN Orders ON Customers.CustomerID =&lt;/P&gt;&lt;P&gt;Orders.CustomerID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RIGHT OUTER JOIN: Retrieves all orders with or without matching customer records. Customer data for orders without customers appears as NULL values. For example, you want to determine if there are any orders in the data with undefined CustomerID values (say, after a conversion or something like it). You can also see the RIGHT OUTER JOIN as a mirror image of the LEFT OUTER JOIN if you switch the side of each table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Customers.&lt;STRONG&gt;, Orders.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;FROM Customers RIGHT OUTER JOIN Orders ON Customers.CustomerID =&lt;/P&gt;&lt;P&gt;Orders.CustomerID&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 16:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join/m-p/2439112#M545803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T16:01:30Z</dc:date>
    </item>
  </channel>
</rss>

