mybatis更新值为null的字段
时间: 2023-03-06 22:28:30 浏览: 167
解决mybatis使用char类型字段查询oracle数据库时结果返回null问题
5星 · 资源好评率100%
mybatis支持使用<set>标签来更新null值的字段,可以在<set>标签中使用<if test="xx != null">来控制更新,例如:update table set xxx=#{xx}<if test="xx != null">,yyy=#{yy}</if>where id=#{id}。
阅读全文