mybatis中insert into values
时间: 2023-11-15 22:55:28 浏览: 70
MyBatis批量插入(insert)数据操作
5星 · 资源好评率100%
在 MyBatis 中,可以使用 `<insert>` 标签来实现插入操作,其中可以使用 `values` 子标签来指定要插入的值。具体语法如下:
```xml
<insert id="insertUser" parameterType="User">
insert into user (username, password, age)
values (#{username}, #{password}, #{age})
</insert>
```
其中,`id` 属性指定了该 SQL 语句的唯一标识符,`parameterType` 属性指定了传入 SQL 语句的参数类型,`#{}` 表示占位符,会被实际的参数值所替换。
阅读全文