<?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: How to extract 2 days data from database in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69673#M778936</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use in() or between() in where clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;select * from tableName &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where dateField in ('requiredDate','requiredDate')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;select * from tableName &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;where dateField between 'FromDate' and 'toDate'&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2018 10:52:26 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2018-04-06T10:52:26Z</dc:date>
    <item>
      <title>How to extract 2 days data from database</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69672#M778935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one please help me on below requirement.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have a table from SQL database&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Here the DATE is in DD/MM/YYYY 00:00:00 format. so extracted date with DD/MM/YYYY using to_char function.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;By using where condition I have to extract only 2 days data 02/04/2018 and 03/04/2018 and need to store in one qvd only. By defining static also fine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;i have used like this and extracted one day data using where &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;to_Char(DATE,'DD/MM/YYYY') ='02/02/2018';&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;how to add 03/04/2018 here. Please help me on this&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;DATE(DATE,'DD/MM/YYYY') as DATE,&lt;/P&gt;&lt;P&gt;TYPE,&lt;/P&gt;&lt;P&gt;STATUS,&lt;/P&gt;&lt;P&gt;SALES,&lt;/P&gt;&lt;P&gt;PRODUCT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;to_Char(DATE,'DD/MM/YYYY') AS DATE,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;TYPE,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;STATUS,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;SALES,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;PRODUCT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM ....&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;where &lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 13.3333px;"&gt;to_Char(DATE,'DD/MM/YYYY') ='02/02/2018';&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69672#M778935</guid>
      <dc:creator>bhavvibudagam</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract 2 days data from database</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69673#M778936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use in() or between() in where clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;select * from tableName &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where dateField in ('requiredDate','requiredDate')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;select * from tableName &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;where dateField between 'FromDate' and 'toDate'&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 10:52:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69673#M778936</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-04-06T10:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract 2 days data from database</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69674#M778937</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;Use where DATE &amp;gt;='02/02/2018' and &amp;lt;='03/02/2018'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 12:44:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69674#M778937</guid>
      <dc:creator>sudhirpkuwar</dc:creator>
      <dc:date>2018-04-06T12:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract 2 days data from database</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69675#M778938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;SELECT&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;to_Char(DATE,'DD/MM/YYYY') AS DATE,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;TYPE,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;STATUS,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;SALES,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;PRODUCT&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;FROM ....&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG&gt;where &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG&gt;to_Char(DATE,'DD/MM/YYYY') Between '02/02/2018' AND '&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;03/04/2018'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 14:15:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69675#M778938</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-06T14:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract 2 days data from database</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69676#M778939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you got this working?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2018 15:05:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69676#M778939</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-09T15:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract 2 days data from database</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69677#M778940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;SELECT&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;to_Char(DATE,'DD/MM/YYYY') AS DATE,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;TYPE,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;STATUS,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;SALES,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;PRODUCT&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;FROM ....&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #ff0000;"&gt;where &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #ff0000;"&gt;to_Char(DATE,'DD/MM/YYYY') ='02/04/2018'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #ff0000;"&gt;OR t&lt;SPAN style="color: #ff0000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;o_Char(DATE,'DD/MM/YYYY') ='03/04/2018'&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2018 15:16:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-2-days-data-from-database/m-p/69677#M778940</guid>
      <dc:creator>Tanalex</dc:creator>
      <dc:date>2018-04-09T15:16:54Z</dc:date>
    </item>
  </channel>
</rss>

