You need to sign in to do that
Don't have an account?

SOQL in operator with tupples?
Anyone knows if I can do something like
select ... from ... where (field1, field2) in {('a1', 'a2'), ('b1', 'b2')}?


No, this is not supported, you'd need to deconstruct it into individual field comparisons.