Sql – special chars select – records with like condition including %
select * from tableName t
where t.ColumnName LIKE ‘%\%%’ escape ‘\’
Advertisements
select * from tableName t
where t.ColumnName LIKE ‘%\%%’ escape ‘\’