<?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: WHERE statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558436#M689282</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone, I think I'm just an idiot for not thinking of that solution. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Oct 2013 10:05:11 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-15T10:05:11Z</dc:date>
    <item>
      <title>WHERE statement</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558432#M689278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, I've got a shameful problem with some SQL. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my script, I load my DB, but I've figured out that there was some records in February 30th, so I want to remove them from the base in qlikview without delete them in the real DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So when I load the concerned table, I do : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table_calendrier:&lt;/P&gt;&lt;P&gt;SQL SELECT * &lt;/P&gt;&lt;P&gt;FROM `004 le calendrier`&lt;/P&gt;&lt;P&gt;WHERE ((NUM_MOIS&amp;lt;&amp;gt;2) AND (NUM_JOUR&amp;lt;&amp;gt;30)); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing is that the WHERE doesn't work, it deletes all the data in february, not the 30th. Am I simply wrong vith my statement or there is a problem with my syntax ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 09:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558432#M689278</guid>
      <dc:creator />
      <dc:date>2013-10-15T09:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558433#M689279</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;Maybe this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * &lt;/P&gt;&lt;P&gt;FROM `004 le calendrier`&lt;/P&gt;&lt;P&gt;WHERE NOT ((NUM_MOIS=2) AND (NUM_JOUR=30)); &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 09:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558433#M689279</guid>
      <dc:creator>dvasseur</dc:creator>
      <dc:date>2013-10-15T09:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558434#M689280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;try this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;table_calendrier:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE NUM_MOIS&amp;lt;&amp;gt;2 AND&amp;nbsp; NUM_JOUR&amp;lt;&amp;gt;30;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL SELECT *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM `004 le calendrier`;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 09:49:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558434#M689280</guid>
      <dc:creator />
      <dc:date>2013-10-15T09:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558435#M689281</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;WHERE NOT &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;NUM_MOIS&lt;/SPAN&gt;&amp;amp;'_'&amp;amp;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;NUM_JOUR&lt;/SPAN&gt; = 2_30;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM `004 le calendrier`;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 09:50:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558435#M689281</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-10-15T09:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558436#M689282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone, I think I'm just an idiot for not thinking of that solution. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 10:05:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-statement/m-p/558436#M689282</guid>
      <dc:creator />
      <dc:date>2013-10-15T10:05:11Z</dc:date>
    </item>
  </channel>
</rss>

