<?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 Join, please help. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147585#M26005</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both of your tables have the exact same IDs on them. There is no difference between any of the joins in that case.&lt;/P&gt;&lt;P&gt;Add an ID 40 to table A, and an ID 50 to table B, and you'll see the differences. Inner will only have IDs 10, 20 and 30. Outer will have 10, 20, 30, 40 and 50. Left will have 10, 20, 30 and 40. Right will have 10, 20, 30 and 50.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jun 2009 04:45:40 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2009-06-24T04:45:40Z</dc:date>
    <item>
      <title>Join, please help.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147581#M26001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;BR /&gt;I read the guide of Qlikview but I do not wnderstand the exactly difference between&lt;BR /&gt;simply hoi, Inner join, left hoin, rght join. Someone could to explain it by some examples?&lt;BR /&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;BR /&gt;Slash [:)]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 03:42:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147581#M26001</guid>
      <dc:creator />
      <dc:date>2009-06-24T03:42:11Z</dc:date>
    </item>
    <item>
      <title>Join, please help.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147582#M26002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Wikipedia page on SQL Joins has some good examples: &lt;A href="http://en.wikipedia.org/wiki/Join_(SQL"&gt;http://en.wikipedia.org/wiki/Join_(SQL&lt;/A&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 03:46:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147582#M26002</guid>
      <dc:creator />
      <dc:date>2009-06-24T03:46:11Z</dc:date>
    </item>
    <item>
      <title>Join, please help.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147583#M26003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't tend to trust just "Join", because different languages may interpret it differently. I believe that QlikView is doing an outer join by default. I always specify which type of join I want.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Inner will only keep rows if they're in BOTH tables. I typically use this to remove rows from an existing table while possibly adding additional columns.&lt;/LI&gt;&lt;LI&gt;Outer will keep all rows from both tables. I don't use this.&lt;/LI&gt;&lt;LI&gt;Left will keep all rows from the left (first) table, whether or not there's a matching row on the right (second) table. It will only keep rows from the right table if there's a matching row on the left table. I use this to add columns to an existing table when it is acceptable to have a null value for the new columns when there is no match.&lt;/LI&gt;&lt;LI&gt;Right will keep all rows from the right (second) table, whether or not there's a matching row on the left (first) table. It will only keep rows from the left table if there's a matching row on the right table. I don't use this.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hopefully I got those right. As for examples, I'm not sure that I could improve on the examples in the help text. Just search for join, then click through inner, outer, left and right. All the examples use the same source data, so you can see exactly how they behave.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 03:56:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147583#M26003</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-24T03:56:34Z</dc:date>
    </item>
    <item>
      <title>Join, please help.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147584#M26004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, I understand what you wrote I tryed to build some examples by QlikView but I ecery Join (Inner, left an right ) seams the same. ..&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt; load * Inline [&lt;BR /&gt;cognome, nome, id&lt;BR /&gt;afr, aldo, 10&lt;BR /&gt; bafr, giovanni, 20&lt;BR /&gt; cafr, giacomo, 30&lt;BR /&gt; ];&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; B:&lt;BR /&gt;Inner join (A) Load * Inline [&lt;BR /&gt;&lt;BR /&gt; id, reparto&lt;BR /&gt; 10, finanza&lt;BR /&gt; 20, it&lt;BR /&gt; 30, customer service&lt;BR /&gt; ];&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if I change the keyword Inner with left nothing change...&lt;/P&gt;&lt;P&gt;the table always joins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Slash&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 04:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147584#M26004</guid>
      <dc:creator />
      <dc:date>2009-06-24T04:38:44Z</dc:date>
    </item>
    <item>
      <title>Join, please help.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147585#M26005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both of your tables have the exact same IDs on them. There is no difference between any of the joins in that case.&lt;/P&gt;&lt;P&gt;Add an ID 40 to table A, and an ID 50 to table B, and you'll see the differences. Inner will only have IDs 10, 20 and 30. Outer will have 10, 20, 30, 40 and 50. Left will have 10, 20, 30 and 40. Right will have 10, 20, 30 and 50.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 04:45:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147585#M26005</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-24T04:45:40Z</dc:date>
    </item>
    <item>
      <title>Join, please help.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147586#M26006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Slash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attachment.&lt;/P&gt;&lt;P&gt;Hope it helps you lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 06:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147586#M26006</guid>
      <dc:creator />
      <dc:date>2011-03-21T06:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Join, please help.</title>
      <link>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147587#M26007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srividhyas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have mentioned self-join in the document but not given its QlikView equivalent syntax.&lt;/P&gt;&lt;P&gt;Can you please give it?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Samir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2011 07:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-please-help/m-p/147587#M26007</guid>
      <dc:creator />
      <dc:date>2011-05-12T07:12:50Z</dc:date>
    </item>
  </channel>
</rss>

