-- 此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
时间: 2024-11-10 20:48:46