<?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: OUTER JOIN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/outer-join/m-p/2819777#M659519</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;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ec77446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ec77446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&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;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Sep 2007 07:20:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-20T07:20:24Z</dc:date>
    <item>
      <title>OUTER JOIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outer-join/m-p/2819776#M659518</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;please tell how to implement OUTER JOIN in ABAP, &lt;/P&gt;&lt;P&gt;I am aware of FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;I think only on outer join i.e. RIGHT OUTER JON can be implemented how to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points assured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 07:18:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outer-join/m-p/2819776#M659518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T07:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: OUTER JOIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/outer-join/m-p/2819777#M659519</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;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ec77446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ec77446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&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;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 07:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/outer-join/m-p/2819777#M659519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T07:20:24Z</dc:date>
    </item>
  </channel>
</rss>

