select * from 表名 where 字段 like '%\%%' ESCAPE '\'
Mysql里用\%,比如:
select * from t where name like '%te\%abc%';
在like后面的模糊搜索字串中的百分号%之前使用转义字符,比如\,再用escape指定该转义字符,例如like 'abc\%ef' escape '\'