有没有办法使用 phpMyAdmin 设置 auto_increment 字段的初始计数?

发布于 2024-08-26 03:20:37 字数 76 浏览 4 评论 0原文

我知道在实际查询中,您可以使用 auto_increment=1 但是如何使用 phpMyAdmin 设置它?

有可能吗?

I know in an actual query, you can use auto_increment=1 but how is this set with phpMyAdmin?

Is it even possible?

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

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

发布评论

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

评论(1

注定孤独终老 2024-09-02 03:20:37

以下是如何使用 phpMyAdmin 将列设置为自动递增的摘录:

在最新的 phpMyAdmin 版本中,有一个新的 A_I 复选框。创建或编辑主键表列时将此选项标记为启用,每次插入新记录时,该数字字段都会自动增加其值。

并且,要将初始计数设置为特定值:

最后,如果您想更改当前的自动增量值(即:使您的自动增量字段从特定数值开始),只需选择 phpMyAdmin 操作选项卡,在 AUTO_INCREMENT 字段中输入您的自动增量的新起始值递增字段,您就可以开始了。

取自 MySQL 在 phpMyAdmin 中设置 auto_increment

Here is an excerpt on how to set a column to be auto incremented using phpMyAdmin:

In the latest phpMyAdmin versions there is a new A_I Checkbox. Mark this option as enabled when creating or editing your primary key table column and that numeric field will automatically increment its value each time a new record is inserted.

And, to set the initial count to a specific value:

Finally, if you want to change the current Auto Increment Value (i.e.: to make your auto increment field start from a specific numeric value) just select the phpMyAdmin Operations tab, type in the AUTO_INCREMENT field the new starting value of your auto incrementing field, and you are ready to go.

Taken from MySQL set auto_increment in phpMyAdmin

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