<?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: Problem While Joining Two Tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751438#M267953</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kalyan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is easy. first, you change the field name E-Id as Emp_ID then, join the two tables as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from table1_path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;load * from table2_path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;BR /&gt;kunal bhattacharjee &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Nov 2014 07:17:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-03T07:17:20Z</dc:date>
    <item>
      <title>Problem While Joining Two Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751434#M267949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Problem while joining two tables , table1 and table2 having two different column names(Emp_ID and E_Id) but same data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Emp_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Emp_Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dept_No&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_Id&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C_Address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one help how to join these two tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 06:25:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751434#M267949</guid>
      <dc:creator />
      <dc:date>2014-11-03T06:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem While Joining Two Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751435#M267950</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;Alias the names to the same name. Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD Emp_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (Table1)&lt;/P&gt;&lt;P&gt;LOAD E_Id As Emp_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 06:32:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751435#M267950</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-11-03T06:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem While Joining Two Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751436#M267951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kalyan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have rename your field name by using aliases .the below clear your doubt...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this ---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;EMP_ID&amp;nbsp; As Key&lt;/P&gt;&lt;P&gt;Emp_Name&lt;/P&gt;&lt;P&gt;Dept_No&lt;/P&gt;&lt;P&gt;from path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join (diffrent types of join you can use here..)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;E_id&amp;nbsp; As Key&lt;BR /&gt;C_Address&lt;/P&gt;&lt;P&gt;from path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you !!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads&lt;/P&gt;&lt;P&gt;Sarfaraz Sheikh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 06:37:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751436#M267951</guid>
      <dc:creator />
      <dc:date>2014-11-03T06:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem While Joining Two Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751437#M267952</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;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; Emp_ID,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Emp_Name,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Dept_No;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Table1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;left join&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;E_Id as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Emp_ID&lt;/SPAN&gt;,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; C_Address;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;from &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Table2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ASHFAQ&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 06:40:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751437#M267952</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-03T06:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem While Joining Two Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751438#M267953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kalyan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is easy. first, you change the field name E-Id as Emp_ID then, join the two tables as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from table1_path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;load * from table2_path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;BR /&gt;kunal bhattacharjee &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 07:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751438#M267953</guid>
      <dc:creator />
      <dc:date>2014-11-03T07:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem While Joining Two Tables</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751439#M267954</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;When joining two table they need exactly same field names then rename that fields and write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table1:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Emp_ID&lt;/STRONG&gt;,Emp_Name,&amp;nbsp; Dept_No&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From Location;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left Join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table2:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;E_Id as&lt;/STRONG&gt; &lt;STRONG&gt;Emp_ID&lt;/STRONG&gt;, C_Address&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From Location;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 07:23:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-While-Joining-Two-Tables/m-p/751439#M267954</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-11-03T07:23:11Z</dc:date>
    </item>
  </channel>
</rss>

