I want to use many LIKE conditions in my query. I could not find a practical solution. I tried CONTAINS, but that wont work.
Instead of this
where EIO.DigiAddress like '% abc@abc.com %' or EIO.DigiAddress like '% def@def.com %' or EIO.DigiAddress like '% ghi@ghi.com %'
I want to use something like this:
CONTAINS(EIO.DigiAddress,'% abc@abc.com %', '% def@def.com %', '% ghi@ghi.com %')
OR
EIO.DigiAddress IN ('% abc@abc.com %', '% def@def.com %', '% ghi@ghi.com %')
source share