is there any way to write SQL query where we can perform contains Check on a column to a sub query/function
i.e. in this manner
select * from where COLUMN contains IN (select * from func)
or
select * from where '%'+ COLUMN + '%' IN (select * from func)