美文网首页
mybatis插入数据返回生成的自增长主键值

mybatis插入数据返回生成的自增长主键值

作者: 向上吧_少年 | 来源:发表于2023-03-26 09:27 被阅读0次

    方式一:

    <insert id="方法名" useGeneratedKeys="true" keyProperty="自增长主键名">
    

    方式二:

    <insert id="方法名">
         <selectKey order="ALTER" keyProperty="自增长主键名" resultType>
            select @@identity
         </selectKey>
    </insert>
    

    相关文章

      网友评论

          本文标题:mybatis插入数据返回生成的自增长主键值

          本文链接:https://www.haomeiwen.com/subject/khsordtx.html