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: 
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
Contributor II
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
Contributor II
Contributor II

Hi,

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

Hope this will also work.
Thanks