I was trying a query like this one, select * from table where column like in ('abc%','bcd%', '%cde') but not working. Basically I cannot use like operator with Or as I don't know how many values i will get at runtime. This values are coming from a subquery.
Requirements are to match with multiple values with pattern. But number of multiple values not known.