<update id="updateByPrimaryKeySelective" parameterType="com.example.pojo.Admin" > update admin <set > <if test="username != null" > username = #{username,jdbcType=VARCHAR}, </if> <if test="password != null" > password = #{password,jdbcType=VARCHAR}, </if> </set> where id = #{id,jdbcType=INTEGER} </update> <update id="updateByPrimaryKey" parameterType="com.example.pojo.Admin" > update admin set username = #{username,jdbcType=VARCHAR}, password = #{password,jdbcType=VARCHAR} where id = #{id,jdbcType=INTEGER} </update>
时间: 2024-04-03 22:31:14 浏览: 70
MyBatis-03动态SQL-01.<if>元素的使用
这是Mybatis XML配置文件中的两个Update语句。第一个Update语句的id为updateByPrimaryKeySelective,作用是根据传入的Admin对象更新admin表中对应记录的部分列,只更新非空属性。第二个Update语句的id为updateByPrimaryKey,作用是根据传入的Admin对象更新admin表中对应记录的所有列。两个语句的parameterType属性都为com.example.pojo.Admin,表示传入的参数为一个Admin对象。其中,<if>标签用于实现动态SQL,如果Admin对象的某个属性不为null,则会将对应的列更新为该属性的值。而<set>标签则用于在SET子句中动态生成列名和值的对应关系。最后,where子句用于指定更新哪条记录,根据Admin对象的id属性进行匹配。
阅读全文