Is it possible to extend a LIKE expression with an IN clause?
At the moment I got the following SQL:
select * 
from SECURITY_PERMISSION permission
where permission.PERMISSION_ID like '%_10498_%'
and permission.PERMISSION_ID like '%_OBJ_VIEW%'
I want to pass a list of Numbers to my like expression. Something like that:
select * 
from SECURITY_PERMISSION permission
where permission.PERMISSION_ID like '%_IN(list_of_numbers)_%'
and permission.PERMISSION_ID like '%_OBJ_VIEW%'
 
     
    