时间:2021-07-01 10:21:17 帮助过:24人阅读
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