<?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: getting stuck in SQL WHERE = Today when date is YYYYMMDD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400292#M701918</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;since myfield has data in text format so system is not able to compare the variable with a text..&lt;/P&gt;&lt;P&gt;i hope u have figured out the issue&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2012 12:04:57 GMT</pubDate>
    <dc:creator>sudeep_d</dc:creator>
    <dc:date>2012-09-27T12:04:57Z</dc:date>
    <item>
      <title>getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400284#M701910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Hey,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;I'm trying to retrieve data, limiting it in SQL according to Today’s date.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;The problem is that the date is stored in YYYYMMDD format, therefore not in proper SQL format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Things like&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13474447516315420" jivemacro_uid="_13474447516315420"&gt;&lt;P&gt;WHERE Date = GetDate()&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13474447601418256" jivemacro_uid="_13474447601418256"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;DATEADD(day, 0, CURRENT_TIMESTAMP); &lt;/SPAN&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13474447643145415" jivemacro_uid="_13474447643145415"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;WHERE Date = CONVERT(CHAR(10),GETDATE(),112);&lt;/SPAN&gt;&lt;/PRE&gt; &lt;/P&gt;&lt;P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13474447718426269" jivemacro_uid="_13474447718426269"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;WHERE Date = CONVERT(VARCHAR(8), GETDATE(), 112) AS [YYYYMMDD]&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;If (to avoid confusion) we now define the field I need to look in for today’s date as &lt;SPAN style="text-decoration: underline;"&gt;MyField&lt;/SPAN&gt;, how would the script look like?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13474447964954482" jivemacro_uid="_13474447964954482"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Load *;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;SQL SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Field1, Field2, MyField from Server.table WHERE MyField = &lt;EM&gt;(?)&lt;/EM&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 10:13:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400284#M701910</guid>
      <dc:creator />
      <dc:date>2012-09-12T10:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400285#M701911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the QV script, before the SQL load put:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vToday = Date(Today(),'YYYYMMDD');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, in your SQL query:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc&lt;/P&gt;&lt;P&gt;FROM Table&lt;/P&gt;&lt;P&gt;WHERE MyField = '$(vToday)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 10:18:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400285#M701911</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-09-12T10:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400286#M701912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;[...]&lt;P&gt;WHERE MyField = '$(vToday)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perfect, fast, awesome!&lt;/P&gt;&lt;P&gt;Can I award you somehow 20 points? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this '$(vToday)' a QV-modded SQL language? I'm asking this becaus I never stumbled in something similar to the solution you provided, when I was browsing in many different SQL helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 10:23:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400286#M701912</guid>
      <dc:creator />
      <dc:date>2012-09-12T10:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400287#M701913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it's QV code - you will see and hear about "dollar-expansions" as you use QV more and more.&amp;nbsp; The $ evaluates the expression (in this case a simple variable) and the single-quotes mean your SQL won't break.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 10:26:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400287#M701913</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-09-12T10:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400288#M701914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there you go 15 points &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; , thank you very much for your further input!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 10:28:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400288#M701914</guid>
      <dc:creator />
      <dc:date>2012-09-12T10:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400289#M701915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pleasure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 10:29:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400289#M701915</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-09-12T10:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400290#M701916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii jason,&lt;/P&gt;&lt;P&gt;what if myfield has date in text format(e.g 23-sep-12) which is not in date format??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 11:44:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400290#M701916</guid>
      <dc:creator>sudeep_d</dc:creator>
      <dc:date>2012-09-27T11:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400291#M701917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just format Today() to match your format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;LET vToday = Date(Today(),'DD-MMM-YY');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 11:50:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400291#M701917</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-09-27T11:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400292#M701918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;since myfield has data in text format so system is not able to compare the variable with a text..&lt;/P&gt;&lt;P&gt;i hope u have figured out the issue&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 12:04:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400292#M701918</guid>
      <dc:creator>sudeep_d</dc:creator>
      <dc:date>2012-09-27T12:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400293#M701919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this string which you have at teh top of every QV script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13487476932581786" jivemacro_uid="_13487476932581786"&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does the trick and let QV recognises your "Sep" when you input 'MMM'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 12:08:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400293#M701919</guid>
      <dc:creator />
      <dc:date>2012-09-27T12:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400294#M701920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;date# equivalent function in sql wud solve my query..i guess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 12:12:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400294#M701920</guid>
      <dc:creator>sudeep_d</dc:creator>
      <dc:date>2012-09-27T12:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400295#M701921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep - and there is the QV equivalent. Have you looked in the F1 help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;LET vToday = Date(Today(),'DD-MMM-YY');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;LOAD.....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;WHERE Date(Date#(MyField,'DD-MMM-YY'),'DD-MMM-YY') = '$(vToday)';&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 12:14:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400295#M701921</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-09-27T12:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: getting stuck in SQL WHERE = Today when date is YYYYMMDD</title>
      <link>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400296#M701922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am fetching data from SAP which uses SQl selectstatement before load hence i need sql function to change the data in date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a100:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;myfield,&lt;/P&gt;&lt;P&gt;z_z4;&lt;/P&gt;&lt;P&gt;sql select myfield z_z4 from table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;script looks something like this .. so what should be my where statement after table1??&lt;/P&gt;&lt;P&gt;date# wont work because it's not a sql function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for concern&lt;/P&gt;&lt;P&gt;sudeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 12:41:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/getting-stuck-in-SQL-WHERE-Today-when-date-is-YYYYMMDD/m-p/400296#M701922</guid>
      <dc:creator>sudeep_d</dc:creator>
      <dc:date>2012-09-27T12:41:57Z</dc:date>
    </item>
  </channel>
</rss>

