<?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 How to implement SQL server in () using Qlikview? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-implement-SQL-server-in-using-Qlikview/m-p/865194#M302668</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 just have a simple question. When I select in SQL server, I may use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from table a&lt;/P&gt;&lt;P&gt;where a. someID in (1,2,3,4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do it in Qlikview?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And, when I LOAD following, how to do the IF better?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD if (ID = 1 or ID =2 or ID =3 or ID =4 or ID =5, 'special', ID)&amp;nbsp; AS newID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident tableB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2015 20:24:09 GMT</pubDate>
    <dc:creator>fionna51</dc:creator>
    <dc:date>2015-05-14T20:24:09Z</dc:date>
    <item>
      <title>How to implement SQL server in () using Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-SQL-server-in-using-Qlikview/m-p/865194#M302668</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 just have a simple question. When I select in SQL server, I may use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from table a&lt;/P&gt;&lt;P&gt;where a. someID in (1,2,3,4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do it in Qlikview?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And, when I LOAD following, how to do the IF better?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD if (ID = 1 or ID =2 or ID =3 or ID =4 or ID =5, 'special', ID)&amp;nbsp; AS newID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Resident tableB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 20:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-SQL-server-in-using-Qlikview/m-p/865194#M302668</guid>
      <dc:creator>fionna51</dc:creator>
      <dc:date>2015-05-14T20:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement SQL server in () using Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-SQL-server-in-using-Qlikview/m-p/865195#M302669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match( someID , 1,2,3,4 ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this both in a LOAD statement in a WHERE-clause and in the field/column part of a load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the last could be writen:&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; If( Match( ID , 1 , 2 , 3 , 4 , 5 ) , 'special' , ID ) AS newID&lt;/P&gt;&lt;P&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tableB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 20:42:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-SQL-server-in-using-Qlikview/m-p/865195#M302669</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-05-14T20:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement SQL server in () using Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-implement-SQL-server-in-using-Qlikview/m-p/865196#M302670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 20:48:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-implement-SQL-server-in-using-Qlikview/m-p/865196#M302670</guid>
      <dc:creator>fionna51</dc:creator>
      <dc:date>2015-05-14T20:48:12Z</dc:date>
    </item>
  </channel>
</rss>

