标签:code title 过滤 习惯 解决方案 from sel 个人 like
-- 此sql中“_”为通配符,匹配任意单字符,所以过滤的数据包含了test开头的数据:select * from live_class where title like ‘test_%‘;
解决方案:
-- 下面两种实现的效果一样(个人偏向于第2种,比较符合后台开发的用法习惯):
select * from live_class where title like ‘test/_%‘ escape ‘/‘;
select * from live_class where title like ‘test\_%‘;
注:通配符“”和“%”的区别在于,通配符“”为匹配任意单字符,而“%”为任意个字符
【记录】mysql使用like匹配数据时关于通配符的使用误区
标签:code title 过滤 习惯 解决方案 from sel 个人 like
原文地址:https://blog.51cto.com/jiyanle/2392512