mybatis xml update
时间: 2023-11-20 08:06:44 浏览: 102
使用MyBatis 动态update数据
mybatis xml 中的 update 标签用于更新数据库中的数据。其基本语法如下:
```
<update id="updateUser" parameterType="User">
update user set username=#{username}, password=#{password} where id=#{id}
</update>
```
其中,id 属性为该语句的唯一标识符,parameterType 属性指定了传入该语句的参数类型,update 标签内部的 SQL 语句则为具体的更新操作。
阅读全文