Mybatis中字符需要使用转义字符
如:
select * from table where length(xm)<2
XML中
select * from table where length(xm)<=2
< | < | 小于号 |
> | > | 大于号 |
& | & | 和 |
' | ’ | 单引号 |
" | " | 双引号 |
Mybatis中字符需要使用转义字符
如:
select * from table where length(xm)<2
XML中
select * from table where length(xm)<=2
< | < | 小于号 |
> | > | 大于号 |
& | & | 和 |
' | ’ | 单引号 |
" | " | 双引号 |