添加用户并在 1 个查询中从数据库中选择该用户 ID
我想做的是将用户添加到数据库中。我有一个每次添加用户时都会自动递增的 id,但问题是我想从刚刚添加的用户那里获取 id,并且我想在 1 个查询中完成此操作。有谁可以帮助我吗?
What i would like to do is add a user to the DB. I have an id that auto-increments each time a user is added, but the problem is that i would like to get the id back from the user i just added and i would like to do it in 1 query. Anyone that can help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 PHP 中,您可以使用 mysql_insert_id()
In PHP you do with mysql_insert_id()