<?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 Apply sql query operators in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Apply-sql-query-operators/m-p/292796#M707668</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to apply sql query in qlikview script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM data.txt&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is '|', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to apply:&lt;/P&gt;&lt;P&gt;WHERE country not like A* ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE postcode &amp;lt;&amp;gt; '1100' AND postcode &amp;lt;&amp;gt; '2200'&lt;/P&gt;&lt;P&gt;How to combine into WHERE postcode &amp;lt;&amp;gt; '1100 2200' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Dec 2011 03:16:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-12T03:16:14Z</dc:date>
    <item>
      <title>Apply sql query operators</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-sql-query-operators/m-p/292796#M707668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to apply sql query in qlikview script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM data.txt&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is '|', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to apply:&lt;/P&gt;&lt;P&gt;WHERE country not like A* ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE postcode &amp;lt;&amp;gt; '1100' AND postcode &amp;lt;&amp;gt; '2200'&lt;/P&gt;&lt;P&gt;How to combine into WHERE postcode &amp;lt;&amp;gt; '1100 2200' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 03:16:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-sql-query-operators/m-p/292796#M707668</guid>
      <dc:creator />
      <dc:date>2011-12-12T03:16:14Z</dc:date>
    </item>
    <item>
      <title>Apply sql query operators</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-sql-query-operators/m-p/292797#M707669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Hi,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;You can use Not WildMatch() to do this.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Your code should like below.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD *&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM data.txt&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(txt, codepage is 1252, embedded labels, delimiter is '|', msq)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Where Not WildMatch(postcode,'1100','2200') and Not WildMatch(country ,'A*');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Hope this helps you.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;-Sridhar&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 04:11:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-sql-query-operators/m-p/292797#M707669</guid>
      <dc:creator>sridhar240784</dc:creator>
      <dc:date>2011-12-12T04:11:06Z</dc:date>
    </item>
    <item>
      <title>Apply sql query operators</title>
      <link>https://community.qlik.com/t5/QlikView/Apply-sql-query-operators/m-p/292798#M707670</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;we Can apply SQL Query in &lt;/P&gt;&lt;P&gt;SQL select statement &lt;/P&gt;&lt;P&gt;Which is used to fetech data from Database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and regarding Where clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Not WildMatch(postcode,'1100','2200') and Not WildMatch(country ,'A*');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 05:42:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Apply-sql-query-operators/m-p/292798#M707670</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-12T05:42:15Z</dc:date>
    </item>
  </channel>
</rss>

