I have a select query where I am trying to search strings for multiple patterns
LIKE (\'%this%\' or \'%that%\' ) and something=else
Returns
Break out the LIKE clauses into 2 separate statements, i.e.:
LIKE
(fieldname1 LIKE '%this%' or fieldname1 LIKE '%that%' ) and something=else