Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
rsdhavle
Creator III
Creator III

Where condition while fetching data from Qvds

Hi,

How can we put where condition while fetching data from QVDs?

Is it possible?

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

Load

...

from ....

Where ....;

let me know

View solution in original post

4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Load

...

from ....

Where ....;

let me know

ashfaq_haseeb
Champion III
Champion III

Hi possible.

look at below code

Dept:

LOAD empid,

     deptname

FROM

dept.qvd

(qvd) where deptname = 103 ;

Regards

ASHFAQ

Anonymous
Not applicable

Try like this:

Dept:

LOAD empid,

          empname,

          salary,

     deptname

FROM

dept.qvd

(qvd) where Salary > = 30000 ;

its_anandrjs
Champion III
Champion III

Yes you may and there are many ways for that depends on the condition that you have

Ex:-

Load

CommonDate,

Name,

Country

From QVD

Where  CommonDate = Today();

Or

Load

CommonDate,

Name,

Country

From QVD

Where  Rowno() > 50;