<?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: Dual Table functionality. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dual-Table-functionality/m-p/402646#M1157846</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume, you are using this temp(dual) table in inner query. then you can use Preceding load. Calculate whatever you want in inner query and then pipe the out put in outer query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Preceding load eg : &lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load" title="http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Mar 2013 10:14:24 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-03-04T10:14:24Z</dc:date>
    <item>
      <title>Dual Table functionality.</title>
      <link>https://community.qlik.com/t5/QlikView/Dual-Table-functionality/m-p/402644#M1157844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Hi All,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;How to use Dual table in QV and how to view the values in QV?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;i am looking like ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff; font-family: 'book antiqua', palatino;"&gt;Load DaylightSaving() as &amp;lt;alias name&amp;gt; .....&amp;lt;Table Name&amp;gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;For Ex like, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;In SQL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Select 1+2 from dual;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;O/P – 3.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Select Date from dual;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;O/P – Todays date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Select timestamp from dual;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Select Addmonth(vDate,1) from dual;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;O/P –Month+1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Reagrds,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino;"&gt;Senthil.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 10:04:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dual-Table-functionality/m-p/402644#M1157844</guid>
      <dc:creator />
      <dc:date>2013-03-04T10:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dual Table functionality.</title>
      <link>https://community.qlik.com/t5/QlikView/Dual-Table-functionality/m-p/402645#M1157845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlikview doesn't have a dual table like oracle. Simply calculate what you want:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vDate = today();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTableName:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;1+2 as MySum,&lt;/P&gt;&lt;P&gt;FieldA - today() as FieldB,&lt;/P&gt;&lt;P&gt;addmonths($(vDate),1) as FieldC&lt;/P&gt;&lt;P&gt;from MySourceTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OtherTable:&lt;/P&gt;&lt;P&gt;load today() as today&lt;/P&gt;&lt;P&gt;1+2 as sum&lt;/P&gt;&lt;P&gt;autogenerate(1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 10:12:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dual-Table-functionality/m-p/402645#M1157845</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-03-04T10:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dual Table functionality.</title>
      <link>https://community.qlik.com/t5/QlikView/Dual-Table-functionality/m-p/402646#M1157846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume, you are using this temp(dual) table in inner query. then you can use Preceding load. Calculate whatever you want in inner query and then pipe the out put in outer query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Preceding load eg : &lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load" title="http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 10:14:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dual-Table-functionality/m-p/402646#M1157846</guid>
      <dc:creator />
      <dc:date>2013-03-04T10:14:24Z</dc:date>
    </item>
  </channel>
</rss>

