mybatis xml中大于、大于等于、小于、小于等于的写法
名称 | 原符号 | 替换符号(xml中写法) |
---|---|---|
大于 | > | > |
大于等于 | >= | >= |
小于 | < | < |
小于等于 | <= | <= |
和 | & | & |
不等于 | <> | <![CDATA[ <> ]]> |
单引号 | ’ | ' |
双引号 | " | " |
mybatis-plus中gt、ge、lt 、 le、eq 、ne 的含义,mybatis-plus中大于、大于等于、小于、小于等于的写法
写法 | 含义 |
---|---|
gt | 大于 greater than |
ge | 大于等于 greater than or equal to |
lt | 小于 less than |
le | 小于等于 less than or equal to |
eq | 等于 equal to |
ne | 不等于 not equal to |