<?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 and Concat with SQL in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-and-Concat-with-SQL/m-p/1574260#M598793</link>
    <description>&lt;P&gt;If A is the only join key, then do this in three steps - concatenate the A and B values, then join the two on A, and finally drop the A and B values.&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;LOAD A, B, C, D, A &amp;amp; B as AB&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;FROM ...&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;Left Join&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;LOAD A, D&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;FROM ...&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;DROP Fields A, B;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;If the join key is more than just A, then you will need to supply more details.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Apr 2019 05:33:33 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2019-04-29T05:33:33Z</dc:date>
    <item>
      <title>Join and Concat with SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Join-and-Concat-with-SQL/m-p/1573888#M598791</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Quick question, I have two tables loaded from an SQL database.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TABLE1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TABLE2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;My desired output is:&lt;/P&gt;&lt;P&gt;-----------------&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TABLE3:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A&amp;amp;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;-----------------------&lt;/P&gt;&lt;P&gt;A &amp;amp; B should be grouped into one single column, please keep in mind that these two tables are coming from an SQL DB and I am currently joining them with a Join().&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:44:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-and-Concat-with-SQL/m-p/1573888#M598791</guid>
      <dc:creator>Emma</dc:creator>
      <dc:date>2024-11-16T03:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Join and Concat with SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Join-and-Concat-with-SQL/m-p/1574257#M598792</link>
      <description>&lt;P&gt;Load both the tables as it is and do this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 3:&lt;/P&gt;&lt;P&gt;Load A&amp;amp;B as key,&lt;/P&gt;&lt;P&gt;C,&lt;/P&gt;&lt;P&gt;D;&lt;/P&gt;&lt;P&gt;left join(Table2)&lt;/P&gt;&lt;P&gt;Load * Resident Table1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 05:14:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-and-Concat-with-SQL/m-p/1574257#M598792</guid>
      <dc:creator>asinha1991</dc:creator>
      <dc:date>2019-04-29T05:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Join and Concat with SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Join-and-Concat-with-SQL/m-p/1574260#M598793</link>
      <description>&lt;P&gt;If A is the only join key, then do this in three steps - concatenate the A and B values, then join the two on A, and finally drop the A and B values.&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;LOAD A, B, C, D, A &amp;amp; B as AB&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;FROM ...&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;Left Join&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;LOAD A, D&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;FROM ...&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="3"&gt;&lt;EM&gt;DROP Fields A, B;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;If the join key is more than just A, then you will need to supply more details.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 05:33:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-and-Concat-with-SQL/m-p/1574260#M598793</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-04-29T05:33:33Z</dc:date>
    </item>
  </channel>
</rss>

