其他分享
首页 > 其他分享> > mybatis判断状态为1或0时注意

mybatis判断状态为1或0时注意

作者:互联网

不能使用

<if test="status != null and status != '' ">
   and z.`status` =  #{status}
</if>

正确使用为

<if test="status != null">
    and z.`status` =  #{status}
</if>

不然当status为0时,可以查询出status为0或1的多种情况

标签:status,状态,判断,正确,查询,不然,使用,mybatis
来源: https://blog.csdn.net/weixin_44684303/article/details/112628725