关于数据库搜索,带有反斜杠的数据like%%搜索不出?

例:数据库里有一条数据,id为1,name为D\F运行sql语句:select*fromtablewherenamelike'%D\\F%'为什么得不到结果??... 例:数据库里有一条数据,id为1,name为D\F
运行sql语句:select * from table where name like '%D\\F%'
为什么得不到结果??
展开
 我来答
Andy_Sun321
2015-03-10 · TA获得超过1376个赞
知道小有建树答主
回答量:811
采纳率:89%
帮助的人:714万
展开全部

SQL Server数据库,在like语句中,默认没有转义字符的,故你这里的like语句中的字符串只要一个反斜杠就够了:

select * from table where name like '%D\F%'

而如果要使用转义字符,则用escape来指定,例如:

select * from table where name like '%D\\F%' escape '\'
追问
MySQL数据库呢?
追答

换了电脑,没能在mysql测试。你试试这样:

select * from table where name like '%D\\\\F%'

即用4个反斜杠代表一个反斜杠字符。

百度网友2dca20d
2015-03-10 · TA获得超过4035个赞
知道大有可为答主
回答量:2638
采纳率:77%
帮助的人:989万
展开全部
这样改
select * from table where name like '%D\F%'
试一下
追问
不行额。

select * from table where name = 'D\F' 不行
select * from table where name = 'D\\F' 行
select * from table where name like '%D\F%' 不行
select * from table where name like '%D\\F%' 不行
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式