<?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 between two tables on common key in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376943#M1168388</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try as suggested by Nicole that will work out!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Aug 2012 06:16:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-08-16T06:16:03Z</dc:date>
    <item>
      <title>Join between two tables on common key</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376940#M1168385</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;I have two tables in below format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;SR No,Name, City&lt;/P&gt;&lt;P&gt;1,A,C&lt;/P&gt;&lt;P&gt;2,B,D&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableB:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[ No,Full Name, Occupation,salary per month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 1,A,EE,10000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,B,DDDDD,20000&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to join these two tables as you can see common key name is diffrent in both tables, Name and fullname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to rename my field of Full Name to Name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In sqls against any relational data base we can compare two columns irrespective of their column name. Is it possible in QLikview?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2012 13:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376940#M1168385</guid>
      <dc:creator />
      <dc:date>2012-08-10T13:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables on common key</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376941#M1168386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The fields must be named the same in order to link them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get around the renaming, you could just load one column twice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;SR No,Name, City&lt;/P&gt;&lt;P&gt;1,A,C&lt;/P&gt;&lt;P&gt;2,B,D&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableB: &lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[ No,Full Name, Occupation,salary per month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 1,A,EE,10000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,B,DDDDD,20000&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join (TableB)&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Full Name] as Name&lt;/P&gt;&lt;P&gt;RESIDENT TableB;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will keep FullName named as it is in TableB, but it will also add a new field to TableB named Name that will link to TableA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2012 13:23:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376941#M1168386</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2012-08-10T13:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables on common key</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376942#M1168387</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;I will suggest using MAP or ApplyMap function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 13:52:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376942#M1168387</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2012-08-15T13:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Join between two tables on common key</title>
      <link>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376943#M1168388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try as suggested by Nicole that will work out!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 06:16:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-between-two-tables-on-common-key/m-p/376943#M1168388</guid>
      <dc:creator />
      <dc:date>2012-08-16T06:16:03Z</dc:date>
    </item>
  </channel>
</rss>

