在MYSQL数据库中,标题行如下:

Interview: Gus O\'Connor win

我在找
title LIKE '%O\'Connor%'

我什么都试过了,结果还是空的,没有结果。
我试过了
'%O''Connor%'


\"%O'Connor%"\

是的,我用上面的代码保护自己不被sql注入。

最佳答案

你可以这样做:

title LIKE "%O\\'Connor%"

09-26 08:21