<?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: Help understanding script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-understanding-script/m-p/1040323#M943899</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This script concatenate the 2 qvds + all distinct values of A for table 1, the joins in this case don't have utility... Maybe you can explain to the community what do you need... but i think that the structure of this script "is rarely".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jan 2016 08:56:38 GMT</pubDate>
    <dc:creator>sorrakis01</dc:creator>
    <dc:date>2016-01-07T08:56:38Z</dc:date>
    <item>
      <title>Help understanding script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-understanding-script/m-p/1040321#M943897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me understand the following script please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table 1&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;B,&lt;BR /&gt;C &lt;/P&gt;&lt;P&gt;from ..qvd 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No concatenate&lt;/P&gt;&lt;P&gt;Table 2&lt;/P&gt;&lt;P&gt;LOAD distinct A &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;resident Table 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;B,&lt;BR /&gt;C&lt;/P&gt;&lt;P&gt;from ..qvd2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Innerjoin (Table 1)&lt;/P&gt;&lt;P&gt;A,&lt;BR /&gt;1 as flag &lt;/P&gt;&lt;P&gt;from..qvd2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left join(Table 1)&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;1 as flag &lt;/P&gt;&lt;P&gt;resident Table1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I understood is that 1st in Table1 we are loading fields A, B and C From qvd1 . Then in table2 we are loading the distinct values of field A from qvd1 . Then, by doing concatenate, we are combining A,B,C from qvd1 and qvd2. From there after, I am not able to understand the script. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My understanding of inner join is that if there is table a and table b: when we do inner join of table a with table b, we get only the common fields present in both tables. And, left join of table a with table b gives all fields from table a and only the common fields from table b. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am not understanding in the script above which table is having inner join with which table and same is the case with left join. Please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2016 03:22:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-understanding-script/m-p/1040321#M943897</guid>
      <dc:creator />
      <dc:date>2016-01-07T03:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help understanding script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-understanding-script/m-p/1040322#M943898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Innerjoin (Table 1) -- Making Inner join operation with Table1 using field A from QVD2&lt;/P&gt;&lt;P&gt;A,&lt;BR /&gt;1 as flag &lt;/P&gt;&lt;P&gt;from..qvd2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left join(Table 1) -- doing left join to Table1 on field A&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;1 as flag &lt;/P&gt;&lt;P&gt;resident Table1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2016 08:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-understanding-script/m-p/1040322#M943898</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2016-01-07T08:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help understanding script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-understanding-script/m-p/1040323#M943899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This script concatenate the 2 qvds + all distinct values of A for table 1, the joins in this case don't have utility... Maybe you can explain to the community what do you need... but i think that the structure of this script "is rarely".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2016 08:56:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-understanding-script/m-p/1040323#M943899</guid>
      <dc:creator>sorrakis01</dc:creator>
      <dc:date>2016-01-07T08:56:38Z</dc:date>
    </item>
  </channel>
</rss>

