-
Sql - special chars select - records with like condition including %
select * from tableName t
where t.ColumnName LIKE '%\%%' escape '\'
Subscribe to:
Post Comments (Atom)
A collection of article and post on relevant technical problems we are meating each day. Problems and their solutions.
select * from tableName t
where t.ColumnName LIKE '%\%%' escape '\'
0 comments: