I have an SQL query as below.
Select * from table where name like \'%\' + search_criteria + \'%\'
If search_criteria = \'abc\', it will r
Escape the percent sign \% to make it part of your comparison value.
\%