获取自增主键 insert新增数据之后的值

自增表新插一条数据后,获取插入数据的id:

mapper.xml

<select id="selectIdentity" resultType="java.lang.Long">
        SELECT @@identity
    </select>

mapper.java

Long selectIdentity();

代码中insert后直接调用即可获取刚才插入数据的id

Long id = jobHistoryMapper.selectIdentity();

 

上一篇:BASE64转换为图片格式


下一篇:Spring 与 Mybatis 中的 @Repository 与 @Mapper与@Mapperscan