<?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: Regarding SQL datetime in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584868#M1115312</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the unclear names here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is actually no Call_hi or date_hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my Load and Select, and that generates the tableviewer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Year(date_from) as Year, Month(date_from) as Month;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT `date_from`&lt;/P&gt;&lt;P&gt;FROM ccbridge.`Call_logg`&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Feb 2014 09:02:39 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-14T09:02:39Z</dc:date>
    <item>
      <title>Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584860#M1115304</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;I have connect my Qlikview to a ODBC SQL server.&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;SQL SELECT `date_hi`,&lt;/P&gt;&lt;P&gt;FROM aabridge.`Call_hi`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i get all the dates. The format of the dates are in "Datetime" so. "YYYY-MM-DD HH-MM-SS".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to make a select so i get the years and the month, and that should be easy so i try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT datepart(yyyy, `date_hi`) AS Year,&lt;/P&gt;&lt;P&gt;datepart(mm, `date_hi`) as Month,&lt;/P&gt;&lt;P&gt;FROM aabridge.`Call_hi`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But then i get SQL error when i try to load saying:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL##f - SqlState: 37000, ErrorCode: 1064, ErrorMsg: [MySQL][ODBC 5.1 Driver][mysqld-4.1.20]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(yyyy, `date_hi`) AS Year,&lt;/P&gt;&lt;P&gt;datepart(mm, `date_hi`) as Month,&lt;/P&gt;&lt;P&gt;FROM aabridge' at line 1&lt;/P&gt;&lt;P&gt;SQL SELECT datepart(yyyy, `date_hi`) AS Year,&lt;/P&gt;&lt;P&gt;datepart(mm, `date_hi`) as Month,&lt;/P&gt;&lt;P&gt;FROM aabridge.`Call_hi`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:11:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584860#M1115304</guid>
      <dc:creator />
      <dc:date>2014-02-14T08:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584861#M1115305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[TableName]:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;date_hi&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS OrigDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Floor(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;date_hi&lt;/SPAN&gt;))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS NewDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;date_hi&lt;/SPAN&gt;))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS NewMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;date_hi&lt;/SPAN&gt;))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS NewYear;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT date_hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM aabridge.Call_hi&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:19:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584861#M1115305</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2014-02-14T08:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584862#M1115306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load the date and perform the transformation in your load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Year(ate_hi) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(date_hi) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc.&lt;/P&gt;&lt;P&gt;sql select ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And consider using a master calendar to link to your date field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:21:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584862#M1115306</guid>
      <dc:creator>Michiel_QV_Fan</dc:creator>
      <dc:date>2014-02-14T08:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584863#M1115307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all: The SELECT statement is NOT evaluated by QlikView - it is just sent to your ODBC client and is evaluated there. So the syntax for the correct SELECT depends on the ODBC driver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly, it is better if you let QlikView define Year, Month, Day instead of doing it in the SELECT. E.g. by&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; Year(date_hi) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(date_hi) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(date_hi) as Day&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT `date_hi`,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM aabridge.`Call_hi` ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Or even better - in a separate table:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Transactions:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT `date_hi`,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM aabridge.`Call_hi` ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Calendar:&lt;/P&gt;&lt;P&gt;Load distinct&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date_hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(date_hi) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(date_hi) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(date_hi) as Day&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident Calendar;&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;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:21:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584863#M1115307</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-02-14T08:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584864#M1115308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all, thanks to all of you for answering so fast!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i do it that way, loading the Year and the Month then i get no relations between the different listboxes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i choose for example 2013 and Jan the related data in the date_hi dont get highlighted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the Year and Month are not related in any way which i also can se in the tableview.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:35:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584864#M1115308</guid>
      <dc:creator />
      <dc:date>2014-02-14T08:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584865#M1115309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If they are not related in the table viewer, you have to create this relationship: You need to include a key between your tables in your Load/SELECT statements. Post an image of your table viewer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:40:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584865#M1115309</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-02-14T08:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584866#M1115310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Tableview.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/53183_Tableview.JPG.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:41:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584866#M1115310</guid>
      <dc:creator />
      <dc:date>2014-02-14T08:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584867#M1115311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(date_hi) as Year,&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; Month(date_hi) as Month,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;you should have &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&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; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;date_hi&lt;/SPAN&gt; as date_from,&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; Year(date_hi) as Year,&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; Month(date_hi) as Month,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 08:54:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584867#M1115311</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-02-14T08:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584868#M1115312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the unclear names here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is actually no Call_hi or date_hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my Load and Select, and that generates the tableviewer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Year(date_from) as Year, Month(date_from) as Month;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT `date_from`&lt;/P&gt;&lt;P&gt;FROM ccbridge.`Call_logg`&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 09:02:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584868#M1115312</guid>
      <dc:creator />
      <dc:date>2014-02-14T09:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584869#M1115313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you should do a &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;LOAD date_from, Year(date_from) as Year, Month(date_from) as Month;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT distinct `date_from` FROM ccbridge.`Call_logg`&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 09:07:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584869#M1115313</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-02-14T09:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SQL datetime</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584870#M1115314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see, that is actually quite beautiful!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 09:09:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-SQL-datetime/m-p/584870#M1115314</guid>
      <dc:creator />
      <dc:date>2014-02-14T09:09:43Z</dc:date>
    </item>
  </channel>
</rss>

