update
实例
- xml
<update id="updateUserAgeById">
UPDATE imooc_user SET age = #{age} WHERE id = #{id}
</update>
- 注解
@Update("UPDATE imooc_user SET age = #{age} WHERE id = #{id}")
int updateUserAgeById(@Param("age") Integer age, @Param("id") Integer id);
update属性
属性 | 描述 |
---|---|
id | 在命名空间中的唯一标识符 |
parameterType | 语句的参数类型,默认可选,MyBatis 会自动推断 |
flushCache | 设置为 true 后,只要语句被调用,都会导致本地缓存和二级缓存被清空,默认为 false |
timeout | 设置超时时间 |
statementType | STATEMENT,PREPARED 或 CALLABLE 中的一个,默认为 PREPARED(预处理) |