如何获取表中两个字段的自增id

发布于 2024-08-10 09:38:38 字数 43 浏览 1 评论 0原文

您好,我想知道如何从表中两个字段的 mysql 数据库获取自动增量 id

Hi i want to know that how the auto increment id can be get from the mysql db for two fields in a table

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自我难过 2024-08-17 09:38:38

在 MySQL 中,每个表只允许有 1 个 auto_increment 列。

如果您尝试创建两个,您将得到:

表定义不正确;只能有一个自动列,并且必须将其定义为键

In MySQL you're only allowed 1 auto_increment column per table.

If you try and create two you'll get:

Incorrect table definition; there can be only one auto column and it must be defined as a key

影子的影子 2024-08-17 09:38:38

嗯,有两个选择,但我不确定它有多大用处(我只会使用主键自增来实现我的需求)。

  1. 使用数据库:在插入上使用触发器来增加字段值。

    使用

  2. 使用 PHP:两种方式,但都不太漂亮:
    一个。抓取插入之前的上一行,并增加插入中的字段。
    b.如果您基于创建的自动增量,则可以执行插入,获取 insert_id,然后更新第二个字段。

再次,仍然不确定为什么你需要它,但这些都是选择。

Well, there are two options, but I am not sure how useful it would be (I would just use the primary key auto-increment to achieve my needs).

  1. Using the Database: Use a trigger on the insert to increment a field value.

  2. Using PHP: Two ways, both not so pretty:
    a. grab the previous row before the insert, and increment the field in the insert.
    b. If you are basing it off of the created auto-increment, you can do the insert, get the insert_id, and then update the second field.

Once again, still not sure why you would need it, but those are the options.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文