
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is it possible to use Where and Where exists in single load script ?
I have a load script where i am using where exists, now if I have to add a where clause - how it can be done ?
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maybe something like:
...
where exists(FIELD) and AnotherCondition;

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, it is possible to use both WHERE and WHERE EXISTS in a single load script in QlikView or Qlik Sense.
The WHERE clause is used to filter data based on a specific condition or set of conditions, while the WHERE EXISTS clause is used to check for the existence of a subquery.
For example, suppose you have two tables named "Sales" and "Customers". You can use the WHERE clause to filter the Sales table based on a specific condition, such as the Sales amount being greater than a certain value:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, it is possible to use both WHERE and WHERE EXISTS in a single load script in QlikView or Qlik Sense.
The WHERE clause is used to filter data based on a specific condition or set of conditions, while the WHERE EXISTS clause is used to check for the existence of a subquery.
For example, suppose you have two tables named "Sales" and "Customers". You can use the WHERE clause to filter the Sales table based on a specific condition, such as the Sales amount being greater than a certain value:
