码迷,mamicode.com
首页 > 数据库 > 详细

【mybatis】mybatis中insert 主键自增和不自增的插入情况【mysql】

时间:2018-06-08 10:33:33      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:nbsp   tis   property   bsp   返回值   type   use   key   into   

 

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

<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>

 

【mybatis】mybatis中insert 主键自增和不自增的插入情况【mysql】

标签:nbsp   tis   property   bsp   返回值   type   use   key   into   

原文地址:https://www.cnblogs.com/sxdcgaq8080/p/9153805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!