I can't believe it's so hard to find an example in informatica documentation.
I would like to check if a string column that matches any of the following strings: 'A', 'B', 'C'
In Oracle, it would be as simple as:
where column in ('A', 'B', 'C')
I have the following in the expression component
iif(column in ('1','2','3'), 'apple', iif(column in ('4','5','6','7','8'), 'orange', 'Unknown'))
and I got syntax error