zoukankan      html  css  js  c++  java
  • mybatis-plus 主键自增问题

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

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

    原文地址:https://blog.csdn.net/qq_37186247/article/details/85238506

  • 相关阅读:
    grep
    [NOI2009]植物大战僵尸
    sed
    YY的GCD
    awk
    CF1100E
    cat
    tac
    [学习笔记]基数排序
    more
  • 原文地址:https://www.cnblogs.com/jpfss/p/12033929.html
Copyright © 2011-2022 走看看