如何在 PHPMyAdmin 中使 MySql 中的字段自动递增?

发布于 2024-07-10 20:06:41 字数 71 浏览 4 评论 0原文

我在表中创建了一个字段并将其设置为索引,但在添加新项目时无法让它自行增加。 我怎样才能通过 PHPMyAdmin 做到这一点?

I created a field in my table and set it as the index but I can't get it to increase on it s own when a new item is added. How do I do make it do this through PHPMyAdmin?

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

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

发布评论

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

评论(2

打小就很酷 2024-07-17 20:06:41

创建/编辑列时选中 A_I 复选框。

Select the A_I check box when creating/editing a column.

风苍溪 2024-07-17 20:06:41

Brian Fisher 的答案是正确的,但是如果您想在代码中尝试,还有另一种方法。 只需单击数据库,转到 SQL 并键入以下代码:

CREATE TABLE Player (
id MEDIUMINT NOT NULL AUTO_INCRMENT,
用户名 CHAR(30) NOT NULL,
主键(id)

说明:
中等薄荷:
INT,最小值为 -8388608,最大值为 8388607
或最小值 0 和最大值 16777215

NOT NULL(两个运算符合二为一):
该值永远不能为空

AUTO_INCRMENT:
您在寻找什么
AUTO_INCRMENT 属性可用于为新行生成唯一标识。

The Answer of Brian Fisher is correct, but there is another way if you want to try it in code. Just Click on the database, go to SQL and type for example the following code:

CREATE TABLE Player (
id MEDIUMINT NOT NULL AUTO_INCREMENT,
username CHAR(30) NOT NULL,
PRIMARY KEY (id)
)

Explanation:
MEDIUMINT:
INT with minimum Value -8388608 and maxmimum Value 8388607
or minimum Value 0 and maxmimum Value 16777215

NOT NULL (Two operators in one):
This value may never be empty

AUTO_INCREMENT:
What you where looking for
The AUTO_INCREMENT attribute can be used to generate a unique identity for new rows.

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