<?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: Selecting Multiple tables and left join with only one table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665320#M728386</link>
    <description>&lt;P&gt;Sorry If my question wasnt clear. I need to join within a table.. I believe now the mentioned where condition does&amp;nbsp; eqi join.. I wanted to change that to inner join.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jan 2020 10:26:15 GMT</pubDate>
    <dc:creator>Smeenakshi23</dc:creator>
    <dc:date>2020-01-14T10:26:15Z</dc:date>
    <item>
      <title>Selecting Multiple tables and left join with only one table</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665301#M728384</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am sorry for this question.. I know this is a basic one. But couldn't implement, as I just started learning development.&lt;/P&gt;&lt;P&gt;I have a SQL select statement in QLikview&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;Select&lt;/P&gt;&lt;P&gt;all the tables&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;from&lt;/P&gt;&lt;P&gt;table A&lt;BR /&gt;table B&lt;BR /&gt;table C&lt;BR /&gt;Table D&lt;/P&gt;&lt;P&gt;WHERE CONDITION&lt;/P&gt;&lt;P&gt;FILED 1.TABLE A = FILED1.TABLE B&lt;/P&gt;&lt;P&gt;FILED 2.TABLE B = FIELD2.TABLE B&lt;/P&gt;&lt;P&gt;and other linking conditions&lt;/P&gt;&lt;P&gt;GROUP BY FILEDS in all the tables&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I need to use left join the table B with Table A.&lt;/P&gt;&lt;P&gt;i am not pretty sure to implement this as it has group by and where clause&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:31:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665301#M728384</guid>
      <dc:creator>Smeenakshi23</dc:creator>
      <dc:date>2024-11-16T01:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Multiple tables and left join with only one table</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665303#M728385</link>
      <description>&lt;P&gt;Hi Sowmiya,&lt;/P&gt;&lt;P&gt;The result of your demo query would be a single table which has already pre-joined the tables using standard SQL.&lt;/P&gt;&lt;P&gt;Doing that would look like:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Select
A1.DataKey,
A1.Data2,
B1.Data1
FROM
TABLEA A1
LEFT JOIN TABLEB B1
ON A1.DataKey = B1.DataKey&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to do the join in QlikView:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TableA:
LOAD
DataKey,
Data2
;
Select
DataKey,
Data2
FROM
TABLEA
;


LEFT JOIN (TableA)
LOAD
DataKey,
Data1
;
Select
DataKey,
Data1
FROM
TABLEB
;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 09:41:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665303#M728385</guid>
      <dc:creator>Stoyan_Terziev</dc:creator>
      <dc:date>2020-01-14T09:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Multiple tables and left join with only one table</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665320#M728386</link>
      <description>&lt;P&gt;Sorry If my question wasnt clear. I need to join within a table.. I believe now the mentioned where condition does&amp;nbsp; eqi join.. I wanted to change that to inner join.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 10:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665320#M728386</guid>
      <dc:creator>Smeenakshi23</dc:creator>
      <dc:date>2020-01-14T10:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Multiple tables and left join with only one table</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665321#M728387</link>
      <description>&lt;P&gt;Wanted to change that to a left join&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 10:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665321#M728387</guid>
      <dc:creator>Smeenakshi23</dc:creator>
      <dc:date>2020-01-14T10:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Multiple tables and left join with only one table</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665385#M728388</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you export to excel the content of each table (or a data sample) and show me how you would like the end result to look like.&lt;/P&gt;&lt;P&gt;Keep in mind, to change the type of joins, you can practically change the word 'LEFT' in the code I sent you with 'INNER/OUTER/RIGHT' if you need.&lt;/P&gt;&lt;P&gt;Check here some explanation about joins you can find useful:&amp;nbsp;&lt;A href="https://www.edureka.co/blog/sql-joins-types" target="_blank"&gt;https://www.edureka.co/blog/sql-joins-types&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;S.T.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 12:36:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1665385#M728388</guid>
      <dc:creator>Stoyan_Terziev</dc:creator>
      <dc:date>2020-01-14T12:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Multiple tables and left join with only one table</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1666964#M728389</link>
      <description>&lt;P&gt;Hello, I tried this and&amp;nbsp; the qlikview is getting hung.. Actually, my first table called employee inner join with one of the table called sales.. so wen there is no sale data.. all my first emlloyee table fields as excluded.. so even wen there is no value in sale table , my employee table needed to show the values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AS of in the previous script there is where clause instead of inner join.. I need to change that to a left join.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also , followed by employee table there are many tables that get inner joined ..&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jan 2020 04:58:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1666964#M728389</guid>
      <dc:creator>Smeenakshi23</dc:creator>
      <dc:date>2020-01-18T04:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Multiple tables and left join with only one table</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1674587#M728390</link>
      <description>&lt;P&gt;You can also check out the Design Blog area of Community:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There are over 700 posts there from our internal experts and most are how-to related, so should prove useful in trying to get ideas on how to approach things.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 21:53:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-Multiple-tables-and-left-join-with-only-one-table/m-p/1674587#M728390</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-02-11T21:53:22Z</dc:date>
    </item>
  </channel>
</rss>

