<?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 Left outer join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070885#M727898</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Over these years, i had not use the left outer join at all. &lt;/P&gt;&lt;P&gt;Can anyone tell me PRACTICALLY where does it come into picture? I know the concept behind this join. so please do not explian about joins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dany&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Nov 2007 18:26:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-28T18:26:55Z</dc:date>
    <item>
      <title>Left outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070885#M727898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Over these years, i had not use the left outer join at all. &lt;/P&gt;&lt;P&gt;Can anyone tell me PRACTICALLY where does it come into picture? I know the concept behind this join. so please do not explian about joins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dany&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 18:26:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070885#M727898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T18:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Left outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070886#M727899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="409354"&gt;&lt;/A&gt; of another users, publishing here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 19:16:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070886#M727899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T19:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Left outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070887#M727900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Consider the scenerio given below:&lt;/P&gt;&lt;P&gt;Table1 is having list of all incoming email coming to SAP CRM system. THese emails are configured(based on information in subject line) to create sales order in the system.&lt;/P&gt;&lt;P&gt;Table2 is having list of all the emails which are creating sales order and the corresponding sales order number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you want to check the successful and errored emails.&lt;/P&gt;&lt;P&gt;For that you can use&lt;/P&gt;&lt;P&gt;SELECT email salesno from table1 as a left outer join table2 as b&lt;/P&gt;&lt;P&gt;               on a.email = b.email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will fetch all email records and also it will display NULL in salesno for all those email records which are not creating any sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&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;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2007 15:56:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070887#M727900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-29T15:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Left outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070888#M727901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not used Outer joins since it is more performance issue,Plase take a look at below explanation:&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2007 16:04:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070888#M727901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-29T16:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Left outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070889#M727902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu Maramreddy - Then what is the importance of right outer join?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Nov 2007 14:57:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join/m-p/3070889#M727902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-30T14:57:26Z</dc:date>
    </item>
  </channel>
</rss>

