Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SQL IN Operator

what is the equivalent of SQL operator 'IN' in QlikView?

ex:

PRODOTI:

LOAD

name,

entities,

...........

FROM XXX.qvd

(qvd)

where entities in ("cards" "collective" "users");                 -------->   ??????????



thx!

3 Replies
Anil_Babu_Samineni

May be use Match function

ex:

PRODOTI:

LOAD

name,

entities,

...........

FROM XXX.qvd

(qvd)

where Match(entities,"cards","collective","users");

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
surendraj
Specialist
Specialist

Match

Match(Fieldname,'Value1','Value2'....)

Match(entities,('cards','collective','users')

surendraj
Specialist
Specialist

Anil,

is field values should be in single quotes or double quotes?