<?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: Exclusive join in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclusive-join/m-p/1674197#M455917</link>
    <description>&lt;P&gt;The was this is done is not really a join, but simulates one...&lt;/P&gt;&lt;P&gt;First I'll create two tables in my app (you already have two tables.)&lt;/P&gt;&lt;P&gt;Table1:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;T1_ID, Field1&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;4, D&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Table2:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;T2_ID, Field2&lt;BR /&gt;1, X&lt;BR /&gt;3, Y&lt;BR /&gt;4, Z&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the script that will do the Exclusive Outer Join of Table1 and Table2...&lt;/P&gt;&lt;P&gt;-------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CombinedTable:&lt;BR /&gt;Load&lt;BR /&gt;&amp;nbsp; &amp;nbsp;T1_ID as ID,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Field1&lt;BR /&gt;Resident Table1&lt;BR /&gt;Where not Exists(T2_ID, T1_ID);&lt;/P&gt;&lt;P&gt;Concatenate (CombinedTable)&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;&amp;nbsp; &amp;nbsp;T2_ID as ID,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Field2&lt;BR /&gt;Resident Table2&lt;BR /&gt;Where Not Exists(T1_ID, T2_ID);&lt;/P&gt;&lt;P&gt;Drop Tables Table1, Table2;&lt;/P&gt;&lt;P&gt;-------------&lt;/P&gt;&lt;P&gt;Now, CombinedTable will contain:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Field1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Field2&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B&lt;BR /&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Feb 2020 01:43:13 GMT</pubDate>
    <dc:creator>lblumenfeld</dc:creator>
    <dc:date>2020-02-11T01:43:13Z</dc:date>
    <item>
      <title>Exclusive join</title>
      <link>https://community.qlik.com/t5/QlikView/Exclusive-join/m-p/1673992#M455916</link>
      <description>&lt;P&gt;hi sorry for my english&lt;/P&gt;&lt;P&gt;How can i do an exclusive outer join?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i let a picture that explains better&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 15:50:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclusive-join/m-p/1673992#M455916</guid>
      <dc:creator>marebalo</dc:creator>
      <dc:date>2020-02-10T15:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exclusive join</title>
      <link>https://community.qlik.com/t5/QlikView/Exclusive-join/m-p/1674197#M455917</link>
      <description>&lt;P&gt;The was this is done is not really a join, but simulates one...&lt;/P&gt;&lt;P&gt;First I'll create two tables in my app (you already have two tables.)&lt;/P&gt;&lt;P&gt;Table1:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;T1_ID, Field1&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;4, D&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Table2:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;T2_ID, Field2&lt;BR /&gt;1, X&lt;BR /&gt;3, Y&lt;BR /&gt;4, Z&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the script that will do the Exclusive Outer Join of Table1 and Table2...&lt;/P&gt;&lt;P&gt;-------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CombinedTable:&lt;BR /&gt;Load&lt;BR /&gt;&amp;nbsp; &amp;nbsp;T1_ID as ID,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Field1&lt;BR /&gt;Resident Table1&lt;BR /&gt;Where not Exists(T2_ID, T1_ID);&lt;/P&gt;&lt;P&gt;Concatenate (CombinedTable)&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;&amp;nbsp; &amp;nbsp;T2_ID as ID,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Field2&lt;BR /&gt;Resident Table2&lt;BR /&gt;Where Not Exists(T1_ID, T2_ID);&lt;/P&gt;&lt;P&gt;Drop Tables Table1, Table2;&lt;/P&gt;&lt;P&gt;-------------&lt;/P&gt;&lt;P&gt;Now, CombinedTable will contain:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Field1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Field2&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B&lt;BR /&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 01:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclusive-join/m-p/1674197#M455917</guid>
      <dc:creator>lblumenfeld</dc:creator>
      <dc:date>2020-02-11T01:43:13Z</dc:date>
    </item>
  </channel>
</rss>

