<?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: How to combine 2 tables ? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948782#M78201</link>
    <description>&lt;P&gt;Load * From Table1;&lt;/P&gt;
&lt;P&gt;JOIN&lt;/P&gt;
&lt;P&gt;Load * From Table2;&lt;/P&gt;
&lt;P&gt;Should work here, I believe.&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jun 2022 20:57:11 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2022-06-27T20:57:11Z</dc:date>
    <item>
      <title>How to combine 2 tables ?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948768#M78198</link>
      <description>&lt;P&gt;I chose the word "combine" because I don't think it's a join (no common Key).&lt;BR /&gt;I have two very simple tables and the expected results is in yellow.&lt;BR /&gt;&lt;BR /&gt;is there an "elegant" way to do this using Script ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 276px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/82771i4816348EAC54C65C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 20:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948768#M78198</guid>
      <dc:creator>Derek_T</dc:creator>
      <dc:date>2022-06-27T20:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine 2 tables ?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948782#M78201</link>
      <description>&lt;P&gt;Load * From Table1;&lt;/P&gt;
&lt;P&gt;JOIN&lt;/P&gt;
&lt;P&gt;Load * From Table2;&lt;/P&gt;
&lt;P&gt;Should work here, I believe.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 20:57:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948782#M78201</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-06-27T20:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine 2 tables ?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948784#M78202</link>
      <description>&lt;P&gt;Before the first load add &lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt; to generate another table...&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 21:04:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948784#M78202</guid>
      <dc:creator>Fernando_Fabregas</dc:creator>
      <dc:date>2022-06-27T21:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine 2 tables ?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948827#M78204</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/186410"&gt;@Derek_T&lt;/a&gt;&amp;nbsp; I can the answer as you expected using below script. Please try and let us know.&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;BR /&gt;Temp1:&lt;BR /&gt;Load * inline [&lt;BR /&gt;Data1&lt;BR /&gt;A,&lt;BR /&gt;B,&lt;BR /&gt;C&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Join (Temp1)&lt;BR /&gt;Temp2:&lt;BR /&gt;Load * inline [&lt;BR /&gt;Data2&lt;BR /&gt;1,&lt;BR /&gt;2,&lt;BR /&gt;3&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Exit Script;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 03:32:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948827#M78204</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-06-28T03:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine 2 tables ?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948828#M78205</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/186410"&gt;@Derek_T&lt;/a&gt;&amp;nbsp; You may even prefer Outer Join instead of just JOIN. Both produce the same result. See below for the code. When there is no common key to make a join, a simple JOIN prefix or Outer JOIN can be used to combine the tables.&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;BR /&gt;Temp1:&lt;BR /&gt;Load * inline [&lt;BR /&gt;Data1&lt;BR /&gt;A,&lt;BR /&gt;B,&lt;BR /&gt;C&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;outer Join (Temp1)&lt;BR /&gt;Temp2:&lt;BR /&gt;Load * inline [&lt;BR /&gt;Data2&lt;BR /&gt;1,&lt;BR /&gt;2,&lt;BR /&gt;3&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Exit Script;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 03:48:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1948828#M78205</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-06-28T03:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine 2 tables ?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1949103#M78227</link>
      <description>&lt;P&gt;Thanks, worked like charm. I did not expect an outer join to work with no common keys.&lt;BR /&gt;I though this would just create empty field in front of each table column.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 13:31:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1949103#M78227</guid>
      <dc:creator>Derek_T</dc:creator>
      <dc:date>2022-06-28T13:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine 2 tables ?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1949107#M78228</link>
      <description>&lt;P&gt;The "Outer" isn't necessary. A simple "Join" will provide the Cartesian of the two tables if they have no common fields (there's nothing to Outer join on with no matching fields). For clarity, I'd suggest avoiding the "Outer" part.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 13:34:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-combine-2-tables/m-p/1949107#M78228</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-06-28T13:34:30Z</dc:date>
    </item>
  </channel>
</rss>

