<?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: Difference between Join and Keep in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629341#M1092782</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;JOIN:&lt;BR /&gt;It is used to join the table that is being loaded to a previously loaded table. The two tables are joined using a natural join in a single table, this means that the columns in both tables are compared and the join is made over those columns that have the same column names. This means that if multiple columns are shared between tables, the match will be made over the distinct combinations of those columns.&lt;BR /&gt;By default, QlikView performs an outer join. This means that the rows for both tables are included in the resulting table. When rows do not have a corresponding row in the other table, the missing columns are assigned null values.&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;Table1:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;A, B, C&lt;BR /&gt;1, 1, 1&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;];&lt;BR /&gt;JOIN&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;B, C, D&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;5, 5, 5&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The resulting table will be:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="join.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/58667_join.jpg" /&gt;&lt;/P&gt;&lt;P&gt;The JOIN statement can be prefixed with the statements INNER, OUTER, LEFT, and RIGHT, which performs an inner, outer, left, or right join respectively. INNER JOIN: Only rows that can be matched between both tables will be kept&lt;BR /&gt;in the result.&lt;/P&gt;&lt;P&gt;• OUTER JOIN: All rows will be kept in the result, rows that do not have a corresponding value in the other table will get null values for the fields that are unique to that table. When no prefix is specified, this is the default join&lt;BR /&gt;type that will be used.&lt;/P&gt;&lt;P&gt;• LEFT JOIN: All rows from the first table and those rows from the second table that have a corresponding key in the first table, will be included in the result. When no match is found, null values will be shown for the columns&lt;BR /&gt;that are unique to the second table.&lt;/P&gt;&lt;P&gt;• RIGHT JOIN: All rows from the second table and those rows from the first table which have a corresponding key in the second table, will be included in the result. When no match is found, null values will be shown for the&lt;BR /&gt;columns that are unique to the first table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KEEP&lt;BR /&gt;It works in the same way that the JOIN statement does, with a small difference. Instead of joining the result in a single table, the KEEP statement keeps both original tables and filters (keeps) rows in one table based on matching&lt;BR /&gt;rows in another table. The same logic for INNER, OUTER, LEFT, and RIGHT KEEP applies here as did with the JOIN statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXAMPLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;A, B, C&lt;BR /&gt;1, 1, 1&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;];&lt;BR /&gt;Table2:&lt;BR /&gt;LEFT KEEP (Table1)&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;B, C, D&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;5, 5, 5&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The resulting table will be:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="keep.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/58668_keep.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 May 2014 04:23:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-05-12T04:23:10Z</dc:date>
    <item>
      <title>Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629338#M1092779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;I am new to qlikview,can anyone please let me know the difference between Join and Keep and also in what circumstances each of them are used with an example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 03:33:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629338#M1092779</guid>
      <dc:creator />
      <dc:date>2014-05-12T03:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629339#M1092780</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;Join - will join two tables and convert it to one table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep - will implement join logic on two tables and maintains two tables separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer Qlikview Help file (F1) , it has very good examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 03:37:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629339#M1092780</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-05-12T03:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629340#M1092781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H1 style="font-style: inherit; font-family: inherit; color: #000000;"&gt;HI&lt;/H1&gt;&lt;H1 style="font-style: inherit; font-family: inherit; color: #000000;"&gt;Left&lt;/H1&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;The &lt;A style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;join&lt;/A&gt; and &lt;A style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;keep&lt;/A&gt; prefixes can be preceded by the prefix &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;left&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;If used before &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;join&lt;/SPAN&gt; it specifies that a left join should be used. The resulting table will only contain combinations of field values from the raw data tables with a full set of data from the first table.&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;If used before &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;keep&lt;/SPAN&gt;, it specifies that the second raw data table should be reduced to its common intersection with the first table, before being stored in QlikView.&lt;/P&gt;&lt;H4 style="font-style: inherit; font-family: inherit; color: #000000;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;left &lt;SPAN style="font-weight: inherit; font-style: italic; font-family: inherit;"&gt;(&lt;/SPAN&gt; join &lt;/SPAN&gt;|&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; keep&lt;SPAN style="font-weight: inherit; font-style: italic; font-family: inherit;"&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt; [ (&lt;SPAN style="font-weight: inherit; font-style: italic; font-family: inherit;"&gt;tablename&lt;/SPAN&gt; ) ]&lt;SPAN style="font-weight: inherit; font-style: italic; font-family: inherit;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: italic; font-family: inherit;"&gt;loadstatement&lt;/SPAN&gt; |&lt;SPAN style="font-weight: inherit; font-style: italic; font-family: inherit;"&gt;selectstatement )&lt;/SPAN&gt;&lt;/H4&gt;&lt;H2 style="font-style: inherit; font-family: inherit; color: #000000;"&gt;Examples:&lt;/H2&gt;&lt;TABLE border="2" cellspacing="2" style="margin-top: 14pt; margin-left: 40px; border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="200"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD bgcolor="#c0c0c0" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #c0c0c0;" valign="top" width="50%"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Table1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD bgcolor="#c0c0c0" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #c0c0c0;" valign="top" width="50%"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;B&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;aa&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;cc&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;ee&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="2" cellspacing="2" style="margin-top: 14pt; margin-left: 40px; border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="200"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD bgcolor="#c0c0c0" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #c0c0c0;" valign="top" width="50%"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Table2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD bgcolor="#c0c0c0" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #c0c0c0;" valign="top" width="50%"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;C&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;xx&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;yy&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;QVTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;select * from table1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;left join select * from table2;&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="2" cellspacing="2" style="margin-top: 14pt; margin-left: 40px; border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="300"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD bgcolor="#000080" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #000080;" valign="top" width="33%"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ffffff;"&gt;QVTable&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD bgcolor="#000080" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #000080;" valign="top" width="33%"&gt;&lt;/TD&gt;&lt;TD bgcolor="#000080" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #000080;" valign="top" width="33%"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;B&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;C&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;aa&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;xx&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;cc&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;ee&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="33%"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;QVTab1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;select * from Table1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;QVTab2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;left keep select * from Table2;&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="2" cellspacing="2" style="margin-top: 14pt; margin-left: 40px; border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="200"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD bgcolor="#000080" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #000080;" valign="top" width="50%"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ffffff;"&gt;QVTab1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD bgcolor="#000080" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #000080;" valign="top" width="50%"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;B&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;aa&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;cc&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;ee&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="2" cellspacing="2" style="margin-top: 14pt; margin-left: 40px; border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="200"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD bgcolor="#000080" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #000080;" valign="top" width="50%"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ffffff;"&gt;QVTab2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD bgcolor="#000080" style="border: 2px solid black; font-style: inherit; font-family: inherit; background-color: #000080;" valign="top" width="50%"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;C&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: 2px solid black; font-style: inherit; font-family: inherit;" valign="top" width="50%"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;xx&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;The two tables in the &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;keep&lt;/SPAN&gt; example are, of course, associated via A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;tab1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Load * from file1.csv;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;tab2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;load * from file2.csv;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;.. .. ..&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;left keep (tab1) load * from file3.csv;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message-abuse!input.jspa?objectID=167976&amp;amp;objectType=2" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 04:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629340#M1092781</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2014-05-12T04:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629341#M1092782</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;JOIN:&lt;BR /&gt;It is used to join the table that is being loaded to a previously loaded table. The two tables are joined using a natural join in a single table, this means that the columns in both tables are compared and the join is made over those columns that have the same column names. This means that if multiple columns are shared between tables, the match will be made over the distinct combinations of those columns.&lt;BR /&gt;By default, QlikView performs an outer join. This means that the rows for both tables are included in the resulting table. When rows do not have a corresponding row in the other table, the missing columns are assigned null values.&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;Table1:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;A, B, C&lt;BR /&gt;1, 1, 1&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;];&lt;BR /&gt;JOIN&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;B, C, D&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;5, 5, 5&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The resulting table will be:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="join.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/58667_join.jpg" /&gt;&lt;/P&gt;&lt;P&gt;The JOIN statement can be prefixed with the statements INNER, OUTER, LEFT, and RIGHT, which performs an inner, outer, left, or right join respectively. INNER JOIN: Only rows that can be matched between both tables will be kept&lt;BR /&gt;in the result.&lt;/P&gt;&lt;P&gt;• OUTER JOIN: All rows will be kept in the result, rows that do not have a corresponding value in the other table will get null values for the fields that are unique to that table. When no prefix is specified, this is the default join&lt;BR /&gt;type that will be used.&lt;/P&gt;&lt;P&gt;• LEFT JOIN: All rows from the first table and those rows from the second table that have a corresponding key in the first table, will be included in the result. When no match is found, null values will be shown for the columns&lt;BR /&gt;that are unique to the second table.&lt;/P&gt;&lt;P&gt;• RIGHT JOIN: All rows from the second table and those rows from the first table which have a corresponding key in the second table, will be included in the result. When no match is found, null values will be shown for the&lt;BR /&gt;columns that are unique to the first table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KEEP&lt;BR /&gt;It works in the same way that the JOIN statement does, with a small difference. Instead of joining the result in a single table, the KEEP statement keeps both original tables and filters (keeps) rows in one table based on matching&lt;BR /&gt;rows in another table. The same logic for INNER, OUTER, LEFT, and RIGHT KEEP applies here as did with the JOIN statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXAMPLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;A, B, C&lt;BR /&gt;1, 1, 1&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;];&lt;BR /&gt;Table2:&lt;BR /&gt;LEFT KEEP (Table1)&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;B, C, D&lt;BR /&gt;2, 2, 2&lt;BR /&gt;3, 3, 3&lt;BR /&gt;5, 5, 5&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The resulting table will be:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="keep.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/58668_keep.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 04:23:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629341#M1092782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-12T04:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629342#M1092783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anushree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 04:32:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629342#M1092783</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-05-12T04:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629343#M1092784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN" style="color: black; font-family: 'Calibri','sans-serif'; font-size: 10pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: Helvetica; mso-themecolor: text1; mso-ansi-language: EN;"&gt;Hi Anushree&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN lang="EN" style="color: black; font-family: 'Calibri','sans-serif'; font-size: 10pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: Helvetica; mso-themecolor: text1; mso-ansi-language: EN; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;The keep prefix between two &lt;A _jive_internal="true" href="https://community.qlik.com/Select_SQL.htm"&gt;&lt;SPAN style="color: black;"&gt;select&lt;/SPAN&gt;&lt;/A&gt; statements has the effect of reducing one or both of the two tables before they are stored in QlikView.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="color: black; font-family: 'Calibri','sans-serif'; font-size: 10pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: Helvetica; mso-themecolor: text1; mso-ansi-language: EN; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="color: black; font-family: 'Calibri','sans-serif'; font-size: 10pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: Helvetica; mso-themecolor: text1; mso-ansi-language: EN; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="color: black; font-family: 'Calibri','sans-serif'; font-size: 10pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: Helvetica; mso-themecolor: text1; mso-ansi-language: EN; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;MV&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 04:59:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629343#M1092784</guid>
      <dc:creator />
      <dc:date>2014-05-12T04:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629344#M1092785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;Join:&amp;nbsp; if will join two tables the O/P result set will convert it to one table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;Keep: if will keep means, it will implement join logic on two tables and O/P result set maintains two tables separately.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;Examples:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: white;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; text-decoration: underline;"&gt;&lt;STRONG&gt;Join:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;A, B, C&lt;/P&gt;&lt;P&gt;aaa,bbb,ccc&lt;/P&gt;&lt;P&gt;abc, bcd, cde&lt;/P&gt;&lt;P&gt;def,fgh ,ijk &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;JOIN&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;B, C, D&lt;/P&gt;&lt;P&gt;xyx, pqr, uvw&lt;/P&gt;&lt;P&gt;nmo, rst, mmm&lt;/P&gt;&lt;P&gt;nnn, ooo, ppp&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Join.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/58670_Join.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Keep:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;A, B, C&lt;/P&gt;&lt;P&gt;aaa,bbb,ccc&lt;/P&gt;&lt;P&gt;abc,bcd,cde&lt;/P&gt;&lt;P&gt;def,fgh ,ijk &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Inner Keep &lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;B, D, E&lt;/P&gt;&lt;P&gt;xyx, pqr, uvw&lt;/P&gt;&lt;P&gt;nmo, rst, mmm&lt;/P&gt;&lt;P&gt;nnn, ooo, ppp&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;IMG alt="Keep.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/58671_Keep.PNG.png" /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Please refer Qlikview Help File, &lt;SPAN style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;it has very good explanation with examples&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 06:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629344#M1092785</guid>
      <dc:creator />
      <dc:date>2014-05-12T06:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629345#M1092786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/39177"&gt;Understanding Join, Keep and Concatenate&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 06:34:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629345#M1092786</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-05-12T06:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629346#M1092787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H1&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Join&lt;/SPAN&gt;&lt;/H1&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;&lt;SPAN style="font-size: 11.0pt; text-decoration: underline; font-family: 'Calibri','sans-serif';"&gt;The purpose of JOIN is to add columns to a table&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;. As a side effect, there could be additional rows.&amp;nbsp; To join properly, the tables must have at least one common field.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Table: A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table B:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table C:&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp; B C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&amp;nbsp; D&amp;nbsp; E&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left Join:&amp;nbsp; A&amp;nbsp; B&amp;nbsp; C&amp;nbsp; D&amp;nbsp; E&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp; 5&amp;nbsp; 6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp; 0&amp;nbsp; 0&amp;nbsp; 5&amp;nbsp; 6&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp; 7&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp; 0&amp;nbsp; 1&amp;nbsp; 5 6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp; 0&amp;nbsp; 7&amp;nbsp; 3 ... and so on&lt;/P&gt;&lt;H1&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/H1&gt;&lt;H1&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Keep&lt;/SPAN&gt;&lt;/H1&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif';"&gt;The &lt;SPAN style="color: white; background: #3399FF;"&gt;keep&lt;/SPAN&gt; prefix between two &lt;/SPAN&gt;&lt;A href="http://community.qlik.com/Load.htm"&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; color: #0066cc;"&gt;load&lt;/SPAN&gt;&lt;/A&gt; &lt;SPAN style="font-family: 'Calibri','sans-serif';"&gt;or &lt;/SPAN&gt;&lt;A href="http://community.qlik.com/Select_SQL.htm"&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; color: #0066cc;"&gt;select&lt;/SPAN&gt;&lt;/A&gt; &lt;SPAN style="font-family: 'Calibri','sans-serif';"&gt;statements has the effect of reducing one or both of the two tables before they are stored in QlikView, based on the intersection of table data. The &lt;SPAN style="color: white; background: #3399FF;"&gt;keep&lt;/SPAN&gt; keyword must always be preceded by one of the prefixes &lt;A href="http://community.qlik.com/Inner.htm"&gt;&lt;SPAN style="color: #0066cc;"&gt;inner&lt;/SPAN&gt;&lt;/A&gt;,&lt;/SPAN&gt;&lt;A href="http://community.qlik.com/Left.htm"&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; color: #0066cc;"&gt;left&lt;/SPAN&gt;&lt;/A&gt; &lt;SPAN style="font-family: 'Calibri','sans-serif';"&gt;or &lt;/SPAN&gt;&lt;A href="http://community.qlik.com/Right.htm"&gt;&lt;SPAN style="color: #0066cc; border-style: none; border-color: windowtext; font-family: Calibri, sans-serif; border-width: 1pt;"&gt;right&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif';"&gt;. The selection of records from the tables is made in the same way as in a corresponding join.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif';"&gt;However, the two tables are not joined and will be stored in QlikView as &lt;STRONG&gt;&lt;EM style="border-style: none; border-color: windowtext; border-width: 1pt;"&gt;two separately named tables&lt;/EM&gt;&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'inherit','serif';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="273"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="2" style="border: none; border-bottom: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom" width="128"&gt;&lt;H1&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;LEFT KEEP&lt;/SPAN&gt;&lt;/H1&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #963634; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: white;"&gt;Table1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; background: #963634; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: white;"&gt;Table2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: solid windowtext 1.0pt; border-bottom: none; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: none; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-bottom: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: solid windowtext 1.0pt; border-left: none; border-bottom: none; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;-&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'inherit','serif';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="272"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="2" style="border: none; border-bottom: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom" width="128"&gt;&lt;H1&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;RIGHT KEEP&lt;/SPAN&gt;&lt;/H1&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #963634; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: white;"&gt;Table1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; background: #963634; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: white;"&gt;Table2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;-&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'inherit','serif';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'inherit','serif';"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="274"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD colspan="2" style="border: none; border-bottom: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom" width="128"&gt;&lt;H1&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;INNER KEEP&lt;/SPAN&gt;&lt;/H1&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #963634; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: white;"&gt;Table1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; background: #963634; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: white;"&gt;Table2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: #DA9694; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;A2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: solid windowtext 1.0pt; border-top: none; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 1.35pt 2.7pt 1.35pt 2.7pt;" valign="bottom"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;C2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 06:35:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629346#M1092787</guid>
      <dc:creator>MuraliPrasath</dc:creator>
      <dc:date>2014-05-12T06:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629347#M1092788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ankita good example by join and keep thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may you small fever for me can please explain look up, mapping load,apply map&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;am waiting for your reply&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Rafi &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 06:38:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629347#M1092788</guid>
      <dc:creator />
      <dc:date>2014-05-12T06:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629348#M1092789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can refer this nice documents for the Keep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3412"&gt;Joins and Lookups&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 07:25:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629348#M1092789</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-12T07:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629349#M1092790</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;&lt;STRONG style="color: #111111; background: white; font-size: 9.0pt; font-family: 'Verdana','sans-serif';"&gt;MAPPING LOAD&lt;/STRONG&gt;&lt;SPAN class="apple-converted-space"&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111; background: white;"&gt;together with the &lt;/SPAN&gt;&lt;STRONG style="font-family: 'Verdana','sans-serif';"&gt;APPLYMAP&lt;/STRONG&gt;&lt;SPAN class="apple-converted-space"&gt; function is used to insert fields from one table to a second table without the need of storing two tables.&lt;/SPAN&gt;&amp;nbsp; This is done to reduce the amount of data being loaded in a qlikview document. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111; background: white;"&gt;Note: Mapping load tables can only contain two fields.&amp;nbsp; The first field is the key field used to search between two tables using the&lt;/SPAN&gt; &lt;STRONG style="font-family: 'Verdana','sans-serif';"&gt;APPLYMAP&lt;/STRONG&gt;&lt;SPAN class="apple-converted-space"&gt; function.&amp;nbsp; The second is the field you wish to transfer to the second table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111; background: white;"&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;Firstly we have the &lt;EM&gt;Orders&lt;/EM&gt; table which contains details about the placed orders.&amp;nbsp; One field in the Orders table is the &lt;EM&gt;EmployeeID&lt;/EM&gt; indicating which Employee entered the order.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: white;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;The details about the Employees such as &lt;EM&gt;Name&lt;/EM&gt;, &lt;EM&gt;Title&lt;/EM&gt;, &lt;EM&gt;Location&lt;/EM&gt; etc can be found in a separate table called &lt;EM&gt;Employees&lt;/EM&gt;.&amp;nbsp; We wish to include the Name field from the &lt;EM&gt;Employees&lt;/EM&gt; table, however we do not wish to load the employee data into the Qlikview application. This could be due to the size of the employee’s table or security reasons not to include the details of the employees in the application.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: white;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;We could load just the &lt;EM&gt;EmployeeID&lt;/EM&gt; and Name to fields from the &lt;EM&gt;Employees&lt;/EM&gt;table and link to the Orders table using the &lt;EM&gt;EmployeeID&lt;/EM&gt; as the key field, however in this example we choose to use the &lt;STRONG&gt;MAPPING LOAD&lt;/STRONG&gt; and&lt;STRONG&gt;APPLYMAP&lt;/STRONG&gt; functionality.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-top: 22.5pt; margin-bottom: 7.5pt; background: white;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;Step 1: First the Mapping Load to load the Employees&lt;/SPAN&gt;&lt;SPAN style="font-family: Verdana, sans-serif; color: #111111; font-size: 21px;"&gt;.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-top: 22.5pt; margin-bottom: 7.5pt; background: white;"&gt;&lt;STRONG style="color: #111111; font-size: 21px; font-family: Verdana, sans-serif;"&gt;&lt;IMG alt="pic1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/58676_pic1.JPG.jpg" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;H2 style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;Step 2: Load the Orders Table, and use the &lt;STRONG&gt;APPLYMAP&lt;/STRONG&gt;function to include the Employee Name.&lt;/SPAN&gt;&lt;/H2&gt;&lt;P style="background-color: white;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;The syntax for the &lt;STRONG&gt;APPLYMAP&lt;/STRONG&gt; function is:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: white;"&gt;&lt;EM style="color: #111111; font-size: 9.0pt; font-family: 'Verdana','sans-serif';"&gt;applymap( ‘mapname’, expr [ , defaultexpr ] )&lt;/EM&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;The first parameters to state whichmapping table you wish to use. In our example &lt;EM&gt;Employees&lt;/EM&gt;.&amp;nbsp; Single quotes must be placed around the mapping table name.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;The second parameters states which field in the &lt;EM&gt;Orders&lt;/EM&gt; table is used to link with the &lt;STRONG&gt;MAPPING LOAD&lt;/STRONG&gt; table.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;An optional third parameter can be included to express the value that will be returned if there is no match in the mapping load table. If no default value is given, the value will be returned as is.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P style="margin-top: 22.5pt; margin-bottom: 7.5pt; background: white;"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;SPAN style="font-size: 9pt; font-family: Verdana, sans-serif; color: #111111;"&gt;So the script for the &lt;/SPAN&gt;&lt;EM style="font-family: 'Verdana','sans-serif';"&gt;Orders&lt;/EM&gt;&lt;SPAN class="apple-converted-space"&gt; table looks like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 22.5pt; margin-bottom: 7.5pt; background: white;"&gt;&lt;SPAN class="apple-converted-space"&gt;&lt;IMG alt="pic2.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/58677_pic2.JPG.jpg" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;In our example, if the &lt;EM&gt;EmployeeID&lt;/EM&gt; is known in the mapping table, then the&lt;EM&gt;EmployeeName&lt;/EM&gt; field would contain the value of the field &lt;EM&gt;Name&lt;/EM&gt; from the Employees table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;In the (unlikely) case that there was an Employee who placed the Order, but not known in the &lt;EM&gt;Employees&lt;/EM&gt; table, then the &lt;EM&gt;EmployeeName&lt;/EM&gt; field would contain the text ‘Unknown’.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111;"&gt;Once the script has completely loaded, the mapping table &lt;EM&gt;Employees&lt;/EM&gt; is automatically deleted and not stored in the Qlikview file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111; background: white;"&gt; Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Verdana','sans-serif'; color: #111111; background: white;"&gt;Ankita&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 07:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629349#M1092790</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-12T07:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629350#M1092791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Ankita, but can u please explain with inline load,is it possible? if it is not possible explain withouit qualify statement.and also look up.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Rafi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 09:51:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629350#M1092791</guid>
      <dc:creator />
      <dc:date>2014-05-12T09:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629351#M1092792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Consider an example:&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;Test1:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,Salary,l1,l2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a,1,1,1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; b,2,3,3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; c,1,2,2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&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;Test2:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left keep (Test1)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * Inline [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,F3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a,2&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a,3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a,4&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b,1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ];&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;Refer the screen shot. Check the explanation in the screen shot below.&lt;A _jive_internal="true" href="https://community.qlik.com/servlet/JiveServlet/showImage/2-526223-58674/screenshot.JPG.jpg" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7; text-decoration: underline;"&gt;&lt;IMG alt="screenshot.JPG.jpg" class="jive-image jiveImage" height="768" src="https://community.qlik.com/legacyfs/online/58688_screenshot.JPG.jpg" style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="1024" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please refer the application for above example and check the result by using left join and left keep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 09:59:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/629351#M1092792</guid>
      <dc:creator>rohan_mulay</dc:creator>
      <dc:date>2014-05-12T09:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Join and Keep</title>
      <link>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/1952710#M1219806</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;JOIN AND KEEP both has same functionality the only difference between two is&amp;nbsp; join combines two or more tables in&amp;nbsp; single table we can see output only one table.&lt;/P&gt;
&lt;P&gt;keep combines two r more tables&amp;nbsp; (Perform the join) but keeping both the tables separate.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 08:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Difference-between-Join-and-Keep/m-p/1952710#M1219806</guid>
      <dc:creator>charishma01</dc:creator>
      <dc:date>2022-07-07T08:44:29Z</dc:date>
    </item>
  </channel>
</rss>

