如果直接寫
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刪除。