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的主要内容,如果未能解决你的问题,请参考以下文章