在mybatis的mapper.xml里使用 大于等于或者小于等于
在mapper.xml的文件中,大于等于可以使用 &gt;= >=<if test="stds.a205One != null">and a.a205 &gt;= #{stds.a205One}</if>小于于等于可以使用 &lt;=
·
在mapper.xml的文件中,大于等于可以使用 >= >=
<if test="stds.a205One != null">
and a.a205 >= #{stds.a205One}
</if>
小于于等于可以使用 <= <=
<if test="stds.a206Two != null">
and a.a206 <= #{stds.a206Two}
</if>
更多推荐
已为社区贡献1条内容
所有评论(0)