本文共 342 字,大约阅读时间需要 1 分钟。
-- 此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\_%';
注:“_”和“%”的区别在于,通配符“_”为匹配任意单字符,而“%”为任意个字符
转载于:https://blog.51cto.com/jiyanle/2392512