mybatis+mysql返回插入的主键,参数只是提供部分参数
Posted stono
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis+mysql返回插入的主键,参数只是提供部分参数相关的知识,希望对你有一定的参考价值。
mybatis+mysql返回插入的主键,参数只是提供部分参数
<insert id="insertByChannelIdOpenid" useGeneratedKeys="true" keyProperty="id" parameterType="com.model.StatisticSaler" > insert into statistic_saler(city_id,shop_id,saler_id,type,openid,time) select city_id,shop_id,saler_id,#{type,jdbcType=VARCHAR},#{openid,jdbcType=VARCHAR},now() from channel s where s.id = #{id,jdbcType=INTEGER} </insert>
输入的参数只是提供部分参数,在插入的过程中使用了其他的数据库表;
mybatis这个insert语句返回的就是影响的记录条数;
而作为参数的那个对象,会由于使用了
useGeneratedKeys="true" keyProperty="id"
而获得新建记录的id;
以上是关于mybatis+mysql返回插入的主键,参数只是提供部分参数的主要内容,如果未能解决你的问题,请参考以下文章