I have a select query where I am trying to search strings for multiple patterns
LIKE (\'%this%\' or \'%that%\' ) and something=else
Returns
Do you have something against splitting it up?
...FROM <blah> WHERE (fieldA LIKE '%THIS%' OR fieldA LIKE '%THAT%') AND something = else