<?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 Which Join ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609727#M225067</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 2 tables one a customer and the other an being orders.&amp;nbsp; I need to report all customers with and without orders.&amp;nbsp; I'm only getting the ones with orders, but I need to know the others without orders.&amp;nbsp; Which join should I use?&amp;nbsp; Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Apr 2014 11:49:05 GMT</pubDate>
    <dc:creator>tmumaw</dc:creator>
    <dc:date>2014-04-07T11:49:05Z</dc:date>
    <item>
      <title>Which Join ?</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609727#M225067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 2 tables one a customer and the other an being orders.&amp;nbsp; I need to report all customers with and without orders.&amp;nbsp; I'm only getting the ones with orders, but I need to know the others without orders.&amp;nbsp; Which join should I use?&amp;nbsp; Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 11:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609727#M225067</guid>
      <dc:creator>tmumaw</dc:creator>
      <dc:date>2014-04-07T11:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Which Join ?</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609728#M225068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take the customer table first and then Left Join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 11:52:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609728#M225068</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-04-07T11:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Which Join ?</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609729#M225069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load Customer_Code, Name, ...... from Customer;&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;Load Customer_Code, Order_id...... from Orders;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way you will have all customers either having orders or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 11:55:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609729#M225069</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-07T11:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Which Join ?</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609730#M225070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes left Join will work in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 12:08:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609730#M225070</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-04-07T12:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Which Join ?</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609731#M225071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use outer join for getting the customer without order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from customer a,order b where a.customername=b.cuomtomername(+)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 12:32:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609731#M225071</guid>
      <dc:creator />
      <dc:date>2014-04-07T12:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Which Join ?</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609732#M225072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I processed all my customers and orders then I did this with no luck. &lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;Resident customer;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outer join (customer)&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;Resident orders&lt;/P&gt;&lt;P&gt;drop table orders&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 14:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Join/m-p/609732#M225072</guid>
      <dc:creator>tmumaw</dc:creator>
      <dc:date>2014-04-07T14:43:03Z</dc:date>
    </item>
  </channel>
</rss>

