<?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: join tables in the script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852933#M299043</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jul 2015 21:29:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-07-10T21:29:06Z</dc:date>
    <item>
      <title>join tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852929#M299039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There are two resident tables in my model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table1 has the fields A,B,C,D,E,F,G, E.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table2 has the fields A,B,C,X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to join them in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The condition is like that: if values in the fields &lt;SPAN style="font-size: 13.3333330154419px;"&gt;A,B,C coincide, then add value of the field X to a particular row in resident table1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I right that the join function is needed? How can I apply it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Larisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 19:10:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852929#M299039</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T19:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: join tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852930#M299040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;inner join (table1) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load *&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;resident table2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drop table2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but your 2 tables are already associated, do you really need to join?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2739"&gt;To Join or not to Join&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 19:22:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852930#M299040</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-07-10T19:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: join tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852931#M299041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I read that a multiple association between tables (via 3 common fields) in not good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I right that the best way is to create an integrated key field and not to join the tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;A &amp;amp; ' | ' &amp;amp;&amp;nbsp; B &amp;amp; ' | ' &amp;amp; C &amp;amp; ' | ' &amp;amp; D as Key&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 20:44:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852931#M299041</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T20:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: join tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852932#M299042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you join, there is no problem - all common fields will be compared.&lt;/P&gt;&lt;P&gt;If you want to keep the tables separate, you better create key field, for example&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A&amp;amp;B&amp;amp;C as Key&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;in both tables&lt;/P&gt;&lt;P&gt;But, you have to drop the A, B, and C from at least one of the tables to avoid synthetic keys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 20:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852932#M299042</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T20:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: join tables in the script</title>
      <link>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852933#M299043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 21:29:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/join-tables-in-the-script/m-p/852933#M299043</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-10T21:29:06Z</dc:date>
    </item>
  </channel>
</rss>

