Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
rsdhavle
Creator II
Creator II

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

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;