执行插入查询后获取自动增量 id
我想获取插入的自动增量ID。
有办法做到吗?
I want to get the autoincrement id of an insert.
is there a way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想获取插入的自动增量ID。
有办法做到吗?
I want to get the autoincrement id of an insert.
is there a way to do it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
鉴于您在标签中仅指定了 mySQL:
使用
LAST_INSERT_ID()
。请务必阅读手册页以了解其中的细微差别。您查询 mySQL 的语言可能具有执行相同操作的内置 API 函数。
Seeing as you're specifying only mySQL in your tags:
Use
LAST_INSERT_ID()
. Make sure to read the manual page for the subtleties.The language you are querying mySQL from may have built-in API functions that do the same thing.