mysql插入数据返回自增
2021/5/30 2:27:14
本文主要是介绍mysql插入数据返回自增,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
别慌:上代码。
xml:
<insert id="insertSeqOrderItf" useGeneratedKeys="true" keyProperty="id"> insert into nsrv_seq_ord_itf (seq_order_id,request_msg) values (#{seqOrderId},#{requestMsg}); </insert>
dao:
insertSeqOrderItf(SeqOrderItfDto seqOrderItfDto);
service:
SeqOrderItfDto seqOrderItfDto = new SeqOrderItfDto(); seqOrderItfDto.setRequestMsg(JSON.toJSONString(cmsSeqRequest)); seqOrderItfDto.setSeqOrderId(nsrvSeqOrd.getId()); nsrvSeqOrdMapper.insertSeqOrderItf(seqOrderItfDto);
截图结果:返回的主键自增id就在你传入的那个dto的属性中。
这篇关于mysql插入数据返回自增的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-20部署MySQL集群入门:新手必读指南
- 2024-11-20部署MySQL集群教程:初学者指南
- 2024-11-20部署MySQL集群项目实战:新手教程
- 2024-11-20部署MySQL集群资料:新手入门教程
- 2024-11-20MySQL集群部署教程:入门级详解
- 2024-11-20MySQL集群教程:入门与实践指南
- 2024-11-20部署MySQL集群教程:新手入门指南
- 2024-11-20MySQL读写分离教程:轻松入门
- 2024-11-20部署MySQL集群入门:一步一步搭建你的数据库集群
- 2024-11-19部署MySQL集群学习:入门教程