<?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 EXISTS syntax in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973647#M650108</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Henric, but there will be occasions when I need it, and i am asking what I think is a simple question that is NOT covered in the documentation. I would just like clarification on this one point. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Sep 2015 18:29:59 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-09-17T18:29:59Z</dc:date>
    <item>
      <title>WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973638#M650099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlik is a great product, but its documentation is sadly behind. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to add a field to an existing QVD. Following advice in the community, I used the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RefNote:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;FROM GM1988AndOnwardNotes.qvd (qvd);&lt;/P&gt;&lt;P&gt;// The 'Records' field in the above QVD was aliased from "RECID" for backwards compatibility&lt;/P&gt;&lt;P&gt;// Now I want to add the REF field to the QVD, joining on the RECID (1:1 with existing QVD)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Records,&lt;/P&gt;&lt;P&gt;&amp;nbsp; REF;&lt;/P&gt;&lt;P&gt;SQL Select&lt;/P&gt;&lt;P&gt;&amp;nbsp; RECID AS Records,&lt;/P&gt;&lt;P&gt;&amp;nbsp; REF&lt;/P&gt;&lt;P&gt; FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp; CONTHIST; // this code taken (with obvious field name changes) from a community post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This actually works fine. However, where there 800k records in the QVD, the new load generated 1.1 million records, so I wanted to restrict the load to only records that already existed I tried adding a WHERE clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE EXISTS (Records). This got an error "wrong syntax near Records".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did a little more digging, saw that I apparently need the field name from both the existing QVD and the &lt;/P&gt;&lt;P&gt;new table in the EXISTS, so I tried&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE EXISTS (Records, RECID), but that also got a syntax error, as did every possible combination&lt;/P&gt;&lt;P&gt;(e.g. (RECID, Records), (Records, RECID), (RECID,RECID) and (Records, Records). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the correct syntax for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 16:13:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973638#M650099</guid>
      <dc:creator />
      <dc:date>2015-09-17T16:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973639#M650100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are you doing this in the QlikView script or the SQL script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;JOIN&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Records,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; REF&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;WHERE EXISTS &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;(RECID, Records)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL Select&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; RECID AS Records,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; REF&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; CONTHIST;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 16:33:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973639#M650100</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-17T16:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973640#M650101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know what you mean by "SQL Script" and "QV Script"; I have one script that mixes and matches QV and SQL statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I'm reading you correctly, you are saying the WHERE clause needs to be before the SQL select, but it is precisely that SQL select that I'm trying to limit!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the initial QVD was created, I only loaded fields from ContHist where there were "NOTES" fields. There are many records in ContHist that don't have a NOTES field, and I'm not concerned with them. However, II do want the REF field to be associated with the correct record, and that is the purpose of the RECID field (it is the primary key). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want is to add the REF field from ContHist to my existing QVD for any record that ALREADY exists in my QVD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try your suggested syntax this afternoon, and see what happens. Still think the documentation could be better, though!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 17:21:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973640#M650101</guid>
      <dc:creator />
      <dc:date>2015-09-17T17:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973641#M650102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You say that you want to "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;load to only records that already existed&lt;/SPAN&gt;". But this is not well defined... The reason that you get more records is that you join two tables, and then some records will be duplicated. So you will have two records that have all fields identical, but have different values in REF. Which record should you discard?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you always want the first one only, you shouldn't use Join. You should use Applymap(). See &lt;A href="https://community.qlik.com/qlik-blogpost/2756"&gt;Don't join - use Applymap instead&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 17:22:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973641#M650102</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-09-17T17:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973642#M650103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, Henric, but your assumption that there are two or more REF fields for any given record exist is false. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each record in ContHist has a unique RECID, plus other fields, such as User, ActionCode, ResultCode, Date, Time, and REF. "Notes" are actually captured in another table, also linked on RECID, and I joined NOTES to ContHist when I created the initial QVD. , So, in my initial QVD, I have RECORDS (aliased from RECID), User, (other fields), and NOTES (1 note per RECID). Now I have been asked to add the REF column to the qvd..So,, e.g.&lt;/P&gt;&lt;P&gt;Record Numbers&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;QVD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ContHist&amp;nbsp;&amp;nbsp;&amp;nbsp; REF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add Account&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spoke to client&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Updated address&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; scheduled meeting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only want to add the REF data from ContHist for RECID's 2 and 4.to my QVD data, and then store the new file into a&lt;/P&gt;&lt;P&gt;new QVD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clearer!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 17:34:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973642#M650103</guid>
      <dc:creator />
      <dc:date>2015-09-17T17:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973643#M650104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try a Left Join. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 17:44:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973643#M650104</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-09-17T17:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973644#M650105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;based on your reply to Sunny. having a hybrid of SQL and QVD is not as straight forward, and I would not recommended using it for key type of fields, so either you use different joins in the SQL sentence to filter the data out or you do a full extraction and you do a join as Henric Suggested &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 18:13:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973644#M650105</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-09-17T18:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973645#M650106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would be ever so happy to get a simple answer to my original question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the right syntax for EXISTS in the WHERE clause?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I'm joining two tables where the field is called "Key1" in the first table (Table1), but is called "Key2" in the second table, (Table2) is the syntax:&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; Key1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fields&lt;/P&gt;&lt;P&gt;from Table1;&lt;/P&gt;&lt;P&gt;JOIN&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Key2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Fields&lt;/P&gt;&lt;P&gt;FROM Table2&lt;/P&gt;&lt;P&gt;WHERE EXISTS ?? (Key1, Key2) or is it (Key2, Key1) or something else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 18:25:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973645#M650106</guid>
      <dc:creator />
      <dc:date>2015-09-17T18:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973646#M650107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't need the Where exists. The Left Join will do exactly that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you would use the Exists function, you could do it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Key1,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fields&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from Table1;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;JOIN&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Key2 as Key1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Fields&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM Table2&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE EXISTS(Key1, Key2) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first parameter should be a previously existing field, and the second a field or expression in the current load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 18:27:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973646#M650107</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-09-17T18:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973647#M650108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Henric, but there will be occasions when I need it, and i am asking what I think is a simple question that is NOT covered in the documentation. I would just like clarification on this one point. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 18:29:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973647#M650108</guid>
      <dc:creator />
      <dc:date>2015-09-17T18:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973648#M650109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunny already replied back to the original question, if you want to use a where exists, you first have to use the field that already exists and then use the new field &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 18:30:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973648#M650109</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-09-17T18:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973649#M650110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, Henric, my mail cut off your reply at "You don't need it..." and I didn't see the rest of your comment. Apologies for the above post. Thanks for the answer. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 18:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/973649#M650110</guid>
      <dc:creator />
      <dc:date>2015-09-17T18:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE EXISTS syntax</title>
      <link>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/1525538#M650111</link>
      <description>&lt;P&gt;Can i use where exist condition instead of where clause.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have situation, one of the previous developer created load script as&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from&amp;nbsp;&lt;/P&gt;&lt;P&gt;x.qvd(qvd)&lt;/P&gt;&lt;P&gt;where color = 'red' and year = 2018.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because of two where conditions, the load is not optimized, how can we create the above load script with 2 conditions as optimized load. I have been searching in community but I haven't got much luck, could you please provide some hint on this scenario. Many Thanks in Advance&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 17:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHERE-EXISTS-syntax/m-p/1525538#M650111</guid>
      <dc:creator>sangeeth8787</dc:creator>
      <dc:date>2019-01-02T17:38:21Z</dc:date>
    </item>
  </channel>
</rss>

