mybatismybatis中insert 主键自增和不自增的插入情况mysql

Posted Angel挤一挤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatismybatis中insert 主键自增和不自增的插入情况mysql相关的知识,希望对你有一定的参考价值。

 

主键不自增:返回值是插入的条数

<insert id="add" parameterType="EStudent">
  insert into TStudent(name, age) values(#{name}, #{age})
</insert

 

主键自增:

<insert id="add" parameterType="EStudent" useGeneratedKeys="true" keyProperty="id">
  insert into TStudent(name, age) values(#{name}, #{age})
</insert>

 

以上是关于mybatismybatis中insert 主键自增和不自增的插入情况mysql的主要内容,如果未能解决你的问题,请参考以下文章

mycat 主键自增问题

向Mysql主键自增长表中添加数据并返回主键

mysql的myBatis,主键自增设置

SQL如何插入自增长的主键值(如图)。谢谢

MySQL主键自增值为什么有“空洞”?

MySQL主键自增值为什么有“空洞”?