<?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 Data Model, Table Join help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190099#M52731</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That just seems to be returning the same results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Sep 2010 03:30:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-09-07T03:30:50Z</dc:date>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190096#M52728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Forum members.&lt;/P&gt;&lt;P&gt;After much searching here and trying many ideas, I have decided to post my question here, in the hopes somebody can help.&lt;/P&gt;&lt;P&gt;I have two tables, A &amp;amp; B say, which have to join on a field which is not a key field in either table. The entries in Table A for this field are in a one to many relationship with entries in table B. The business problem requires that I find for each unique entry in table A, a corresponding entry in Table B, which is possible when the other fields in table are considered.&lt;/P&gt;&lt;P&gt;More specifically: Table A contains Claims and table B contains features of the policy which are date dependant: Only 1 feature is valid per claim.&lt;/P&gt;&lt;P&gt;I thought of using interval match, but haven't been successful.&lt;/P&gt;&lt;P&gt;My next thought is, and where I need help with the syntax is :&lt;/P&gt;&lt;P&gt;Load table A, then inner join with table B, with a WHERE clause that depends on the values of table A.&lt;/P&gt;&lt;P&gt;here is a simplified example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TableA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ClaimNo, Discount, ClaimDate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100000, A, 1/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100001, B, 1/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100002, B, 2/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100003, B, 3/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100004, A, 2/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100005, B, 2/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100006, A, 3/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100007, B, 1/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100008, A, 2/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100009, B, 3/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TableB:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DiscountFeature, Discount, Start, End&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100, A, 1/9/2010, 2/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;100, B, 3/9/2010, 6/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;101, C, 2/9/2010, 3/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;101, F, 1/9/2010, 1/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;102, D, 1/9/2010, 3/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;103, A, 3/9/2010, 6/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;103, B, 1/9/2010, 2/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;104, E, 1/9/2010, 6/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;105, C, 1/9/2010, 1/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;105, G, 2/9/2010, 3/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;106, F, 2/9/2010, 3/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;106, G, 1/9/2010, 1/9/2010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the end, I would like a table in the data model, with ClaimNo and DiscountFeature. Right now the resulting table with the inner join contains 2 records for each claim, one in the valid period and one not. I can do most expressions by using the claim date to filter right answer, but I think that is too expensive. I also don't need twice the records I get from the join.&lt;/P&gt;&lt;P&gt;So, obviously this is simplified, I would be happy to answer any questions for ideas to try.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 21:57:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190096#M52728</guid>
      <dc:creator>pduplessis</dc:creator>
      <dc:date>2010-09-06T21:57:43Z</dc:date>
    </item>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190097#M52729</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;Would it be true to say that the ClaimDate will always be equal to the Start Date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 01:49:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190097#M52729</guid>
      <dc:creator />
      <dc:date>2010-09-07T01:49:37Z</dc:date>
    </item>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190098#M52730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like you just need an Intervalmatch. Try following after your tale inline loads:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;IntervalMatch(ClaimDate, Discount)&lt;BR /&gt;LOAD Start, End, Discount RESIDENT TableB;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;And you can surely left join all this back to main table, if you are interested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 02:19:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190098#M52730</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2010-09-07T02:19:34Z</dc:date>
    </item>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190099#M52731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That just seems to be returning the same results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 03:30:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190099#M52731</guid>
      <dc:creator />
      <dc:date>2010-09-07T03:30:50Z</dc:date>
    </item>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190100#M52732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xena,&lt;/P&gt;&lt;P&gt;You find sample this code.&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;/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;/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;BR /&gt;&lt;BR /&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;/P&gt;&lt;BR /&gt;&lt;BR /&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;/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;/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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;TABLEA:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;* &lt;P&gt;&lt;B&gt;INLINE&lt;/B&gt;&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;I&gt;&lt;/I&gt;&lt;P style="font-style: italic"&gt;TABLEB:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;OUTER&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;JOIN&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;* &lt;P&gt;&lt;B&gt;INLINE&lt;/B&gt;&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;I&gt;&lt;/I&gt;&lt;P style="font-style: italic"&gt;TABLEC:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;NOCONCATENATE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ClaimNo &lt;P&gt;,&lt;/P&gt;&lt;P&gt;ClaimDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Discount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;DiscountFeature&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Start&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;End&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;RESIDENT&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLEA&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;WHERE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ClaimDate &amp;gt;= Start &lt;B&gt;AND&lt;/B&gt; ClaimDate &amp;lt;= &lt;P&gt;End;&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;DROP&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;TABLE&lt;/B&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;TABLEA;&lt;/I&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope, it will help you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj Kishor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 08:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190100#M52732</guid>
      <dc:creator />
      <dc:date>2010-09-07T08:42:10Z</dc:date>
    </item>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190101#M52733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please find the sample code to achieve this.&lt;/P&gt;&lt;P&gt;TABLEA:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt; ClaimNo, Discount, ClaimDate&lt;BR /&gt; 100000, A, 1/9/2010&lt;BR /&gt; 100001, B, 1/9/2010&lt;BR /&gt; 100002, B, 2/9/2010&lt;BR /&gt; 100003, B, 3/9/2010&lt;BR /&gt; 100004, A, 2/9/2010&lt;BR /&gt; 100005, B, 2/9/2010&lt;BR /&gt; 100006, A, 3/9/2010&lt;BR /&gt; 100007, B, 1/9/2010&lt;BR /&gt; 100008, A, 2/9/2010&lt;BR /&gt; 100009, B, 3/9/2010&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;TABLEB:&lt;BR /&gt;OUTER JOIN&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;DiscountFeature, Discount, Start, End&lt;BR /&gt; 100, A, 1/9/2010, 2/9/2010&lt;BR /&gt; 100, B, 3/9/2010, 6/9/2010&lt;BR /&gt; 101, C, 2/9/2010, 3/9/2010&lt;BR /&gt; 101, F, 1/9/2010, 1/9/2010&lt;BR /&gt; 102, D, 1/9/2010, 3/9/2010&lt;BR /&gt; 103, A, 3/9/2010, 6/9/2010&lt;BR /&gt; 103, B, 1/9/2010, 2/9/2010&lt;BR /&gt; 104, E, 1/9/2010, 6/9/2010&lt;BR /&gt; 105, C, 1/9/2010, 1/9/2010&lt;BR /&gt; 105, G, 2/9/2010, 3/9/2010&lt;BR /&gt; 106, F, 2/9/2010, 3/9/2010&lt;BR /&gt; 106, G, 1/9/2010, 1/9/2010&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;TABLEC:&lt;BR /&gt;NOCONCATENATE&lt;BR /&gt;LOAD ClaimNo,&lt;BR /&gt; ClaimDate,&lt;BR /&gt; Discount,&lt;BR /&gt; DiscountFeature,&lt;BR /&gt; Start,&lt;BR /&gt; End&lt;BR /&gt;RESIDENT TABLEA&lt;BR /&gt;WHERE ClaimDate &amp;gt;= Start AND ClaimDate &amp;lt;= End;&lt;/P&gt;&lt;P&gt;DROP TABLE TABLEA;&lt;/P&gt;&lt;P&gt;Hope, this will help you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj Kishor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 08:44:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190101#M52733</guid>
      <dc:creator />
      <dc:date>2010-09-07T08:44:19Z</dc:date>
    </item>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190102#M52734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please find the sample code.&lt;/P&gt;&lt;P&gt;TABLEA:&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt; ClaimNo, Discount, ClaimDate&lt;BR /&gt; 100000, A, 1/9/2010&lt;BR /&gt; 100001, B, 1/9/2010&lt;BR /&gt; 100002, B, 2/9/2010&lt;BR /&gt; 100003, B, 3/9/2010&lt;BR /&gt; 100004, A, 2/9/2010&lt;BR /&gt; 100005, B, 2/9/2010&lt;BR /&gt; 100006, A, 3/9/2010&lt;BR /&gt; 100007, B, 1/9/2010&lt;BR /&gt; 100008, A, 2/9/2010&lt;BR /&gt; 100009, B, 3/9/2010&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;TABLEB:&lt;BR /&gt;OUTER JOIN&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[&lt;BR /&gt;DiscountFeature, Discount, Start, End&lt;BR /&gt; 100, A, 1/9/2010, 2/9/2010&lt;BR /&gt; 100, B, 3/9/2010, 6/9/2010&lt;BR /&gt; 101, C, 2/9/2010, 3/9/2010&lt;BR /&gt; 101, F, 1/9/2010, 1/9/2010&lt;BR /&gt; 102, D, 1/9/2010, 3/9/2010&lt;BR /&gt; 103, A, 3/9/2010, 6/9/2010&lt;BR /&gt; 103, B, 1/9/2010, 2/9/2010&lt;BR /&gt; 104, E, 1/9/2010, 6/9/2010&lt;BR /&gt; 105, C, 1/9/2010, 1/9/2010&lt;BR /&gt; 105, G, 2/9/2010, 3/9/2010&lt;BR /&gt; 106, F, 2/9/2010, 3/9/2010&lt;BR /&gt; 106, G, 1/9/2010, 1/9/2010&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;TABLEC:&lt;BR /&gt;NOCONCATENATE&lt;BR /&gt;LOAD ClaimNo,&lt;BR /&gt; ClaimDate,&lt;BR /&gt; Discount,&lt;BR /&gt; DiscountFeature,&lt;BR /&gt; Start,&lt;BR /&gt; End&lt;BR /&gt;RESIDENT TABLEA&lt;BR /&gt;WHERE ClaimDate &amp;gt;= Start AND ClaimDate &amp;lt;= End;&lt;/P&gt;&lt;P&gt;DROP TABLE TABLEA;&lt;/P&gt;&lt;P&gt;Hope, it will help you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj Kishor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 08:48:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190102#M52734</guid>
      <dc:creator />
      <dc:date>2010-09-07T08:48:54Z</dc:date>
    </item>
    <item>
      <title>Data Model, Table Join help</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190103#M52735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Raj,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 10:07:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Model-Table-Join-help/m-p/190103#M52735</guid>
      <dc:creator>pduplessis</dc:creator>
      <dc:date>2010-09-07T10:07:03Z</dc:date>
    </item>
  </channel>
</rss>

