在oracle数据库
发布网友
发布时间:2022-05-03 09:43
我来回答
共2个回答
热心网友
时间:2022-04-11 20:35
这个需要用到oracle的转义字符也就是escape
譬如你的这个提问,要这么写
select * from 表名 where 字段 like '\%%' escape '\';
这个意思,是从\处转义,第一个百分号就是正常的你要查的那个以%开头的,后一个百分号就是like的模糊查询里的百分号
如果这么写
select * from 表名 where 字段 like '%\%%' escape '\';
就表示两头都模糊查询
select * from 表名 where 字段 like '%\%' escape '\'
就表示以百分号结尾
热心网友
时间:2022-04-11 21:53
使用
escape