I have a select query where I am trying to search strings for multiple patterns
LIKE (\'%this%\' or \'%that%\' ) and something=else
Returns
Have you tried:
(column LIKE '%this%' and something=else) or (column LIKE '%that%' and something=else)