如果直接写
select * from user where id <> 217;mybatis就会报语法错误,<>特殊字符需要转义
如下
select * from user where id <> 217;
使用Mybatis的时候,特殊字符需进行转义,如
<> <>
& &
' '
"
https://jingyan.baidu.com/article/7c6fb428de049680642c90e6.html
如果直接写
select * from user where id <> 217;mybatis就会报语法错误,<>特殊字符需要转义
如下
select * from user where id <> 217;
使用Mybatis的时候,特殊字符需进行转义,如
<> <>
& &
' '
"
https://jingyan.baidu.com/article/7c6fb428de049680642c90e6.html
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。