在用【select * from psx_element where ele_id like ‘%ref_%‘】查询是,表中出现了很多不包含【ref_】的结果。
经过一番度娘,终于了解。
因为下划线是通配符,需要用escape转义函数,写成下面的语句就可以了。
select * from psx_element where ele_id like ‘%ref/_%‘ escape‘/‘
SQL语句中like下划线不起作用
原文:http://www.cnblogs.com/cat-fish/p/4445025.html