对于支持自动生成主键的数据库(如SQL Server),可以采用以下方式
<insert id="xxx" parameterType="yyy" useGeneratedKeys="true" keyProperty="id">
</insert>
对于不支持自动生成主键(如Oracle),可以采用以下方式
<insert id="xxx" parameterType="yyy">
<selectKey keyProperty="id" resultType="long" order="BEFORE">
select my_seqnextval from dual
</selectKey>
</insert>
parameterType String?
那你selectKey获得的id放在哪个对象里呢?
parameterType应该是一个model对象,有id和content两个属性才对
以上就是关于mybatis 做 insert *** 作的时候 怎么才能返回插入的那条数据的id全部的内容,包括:mybatis 做 insert *** 作的时候 怎么才能返回插入的那条数据的id、mybatis mysql 数据库 insert 插入数据返回主键、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)