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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
farolito20
Contributor III
Contributor III

Select Query

How I can do this query in an expression in QlikView?

SELECT *

FROM Person.Password

WHERE ModifiedDate>'1996/07/23'  and ModifiedDate<'1997/03/20'

Labels (1)
7 Replies
Not applicable

If you read a QVD, you can read the table and put a where.

select *

from QVD.TABLE

Where ModifiedDate> 'date1' and ModifiedDate < 'data2'

farolito20
Contributor III
Contributor III
Author

Yes, but the select doesn't work in expressions 😕

farolito20
Contributor III
Contributor III
Author

I wanna put that condition in a text object

Not applicable

if so use the expression to return the values ​​in the object.

= if (ModifiedDate> 'date1' and ModifiedDate <'data2', 'Field Object)

farolito20
Contributor III
Contributor III
Author

Thanks

Not applicable

Good morning,

Did it work? So mark my answer as correct, please!

farolito20
Contributor III
Contributor III
Author

I didn't use your answer, but that gave me an a good idea