<?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 match or where? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538211#M38848</link>
    <description>Why not try where exist ? It will make your load optimized too. About the performance &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14931"&gt;@jonathandienst&lt;/a&gt; is much more qualified than me to comment on.</description>
    <pubDate>Fri, 01 Feb 2019 05:01:01 GMT</pubDate>
    <dc:creator>pradosh_thakur</dc:creator>
    <dc:date>2019-02-01T05:01:01Z</dc:date>
    <item>
      <title>Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538203#M38840</link>
      <description>&lt;P&gt;Can someone tell me that it is more efficient and faster when loading data:&lt;/P&gt;&lt;P&gt;load * from qvd where account_count = '5555.20' or&lt;/P&gt;&lt;P&gt;load * from qvd where match (account_count, '5555.20').&lt;/P&gt;&lt;P&gt;Which is more efficient or better?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 04:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538203#M38840</guid>
      <dc:creator>juanpablo_carde</dc:creator>
      <dc:date>2019-02-01T04:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538204#M38841</link>
      <description>&lt;P&gt;If account_count is a numeric, then I would expect a numeric comparison to be faster as there is no need to convert to a number. Remove the quotes (&lt;SPAN&gt;where account_count = 5555.20). But whether there would be a meaningful difference - that would need to be tested.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 04:35:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538204#M38841</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-02-01T04:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538207#M38844</link>
      <description>Below an option you can try&lt;BR /&gt;&lt;BR /&gt;LOAD * inline [&lt;BR /&gt;&lt;BR /&gt;account_count&lt;BR /&gt;&lt;BR /&gt;5555.20];&lt;BR /&gt;&lt;BR /&gt;Data:&lt;BR /&gt;&lt;BR /&gt;LOAD *&lt;BR /&gt;&lt;BR /&gt;FROM qvd&lt;BR /&gt;&lt;BR /&gt;where exists (account_count );</description>
      <pubDate>Fri, 01 Feb 2019 04:38:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538207#M38844</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-01T04:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538208#M38845</link>
      <description>&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;And in the case that information is text, what is better , example:&lt;/P&gt;&lt;P&gt;where AREA='HEALTH' OR&amp;nbsp; where match(AREA, 'HEALTH').&lt;/P&gt;&lt;P&gt;What is more efficent&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 04:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538208#M38845</guid>
      <dc:creator>juanpablo_carde</dc:creator>
      <dc:date>2019-02-01T04:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538210#M38847</link>
      <description>Thank you for your response.&lt;BR /&gt;&lt;BR /&gt;And in the case that information is text, what is better , example:&lt;BR /&gt;&lt;BR /&gt;where AREA='HEALTH' OR where match(AREA, 'HEALTH').&lt;BR /&gt;&lt;BR /&gt;What is more efficent</description>
      <pubDate>Fri, 01 Feb 2019 04:56:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538210#M38847</guid>
      <dc:creator>juanpablo_carde</dc:creator>
      <dc:date>2019-02-01T04:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538211#M38848</link>
      <description>Why not try where exist ? It will make your load optimized too. About the performance &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14931"&gt;@jonathandienst&lt;/a&gt; is much more qualified than me to comment on.</description>
      <pubDate>Fri, 01 Feb 2019 05:01:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538211#M38848</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-01T05:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538213#M38849</link>
      <description>Thank you for your response.&lt;BR /&gt;And in the case that information is text, what is better , example:&lt;BR /&gt;where AREA='HEALTH' OR&lt;BR /&gt;where match(AREA, 'HEALTH') or&lt;BR /&gt;where exists('HEALTH')&lt;BR /&gt;&lt;BR /&gt;What is more efficent</description>
      <pubDate>Fri, 01 Feb 2019 05:15:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538213#M38849</guid>
      <dc:creator>juanpablo_carde</dc:creator>
      <dc:date>2019-02-01T05:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538218#M38850</link>
      <description>To my understanding Where exists(AREA).&lt;BR /&gt;&lt;BR /&gt;Have a look at this old link&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/optimize-and-non-optimze-load-in-qvd/td-p/311197" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/optimize-and-non-optimze-load-in-qvd/td-p/311197&lt;/A&gt;</description>
      <pubDate>Fri, 01 Feb 2019 05:23:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538218#M38850</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-01T05:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Where match or where?</title>
      <link>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538227#M38851</link>
      <description>&lt;P&gt;Why don't you just test all three and see which performs better for your requirement?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 05:34:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-match-or-where/m-p/1538227#M38851</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-02-01T05:34:57Z</dc:date>
    </item>
  </channel>
</rss>

