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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Aurél
Creator
Creator

IN operator

Hello,

In SQL we can use :
PRODUCT IN ('A','B','C')
For a reload script using REDISENT what can we replace the operator IN please?

Can we avoid doing this?:
PRODUCT = 'A' OR
PRODUCT = 'B' OR
PRODUCT = 'C'....

Thank you.

Labels (1)
2 Solutions

Accepted Solutions
Or
MVP
MVP

Match(Field,'Value1','Value2')

View solution in original post

Aamer_17
Partner - Contributor II
Partner - Contributor II

Hi,

you can also use WildMatch(Field,'Value1','Value2',.....,'ValueN');

Hope this will also work.
Thanks

View solution in original post

2 Replies
Or
MVP
MVP

Match(Field,'Value1','Value2')

Aamer_17
Partner - Contributor II
Partner - Contributor II

Hi,

you can also use WildMatch(Field,'Value1','Value2',.....,'ValueN');

Hope this will also work.
Thanks