如何告诉 phpMyAdmin 在插入期间使用下一个自动增量值?

发布于 2024-10-10 08:41:03 字数 93 浏览 2 评论 0原文

如果您尝试通过 phpMyAdmin 界面向具有自动增量主索引字段的表插入新记录,则需要您手动输入该字段的值。如果您不输入任何内容,则会引发错误。如何让它只使用自动增量值?

If you try to insert a new record through phpMyAdmin interface to a table that has auto increment primary index field, it requires you to manually enter value for this field. If you don't enter anything it throws an error. How to make it just use auto increment value?

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

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

发布评论

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

评论(3

混吃等死 2024-10-17 08:41:03
insert into tbl (id,...) values (0,...);  <-- use zero

如果用户在 INSERT 中为 AUTO_INCRMENT 列指定 NULL 或 0,InnoDB 会将该行视为未指定该值,并为其生成一个新值。


没有为 AUTO_INCRMENT 列指定值,因此 MySQL 自动分配序列号。您还可以向列显式分配 NULL 或 0 以生成序列号。

insert into tbl (id,...) values (0,...);  <-- use zero

If a user specifies NULL or 0 for the AUTO_INCREMENT column in an INSERT, InnoDB treats the row as if the value had not been specified and generates a new value for it.


No value was specified for the AUTO_INCREMENT column, so MySQL assigned sequence numbers automatically. You can also explicitly assign NULL or 0 to the column to generate sequence numbers.

左岸枫 2024-10-17 08:41:03

尝试将 NULL 值传递给主字段。
以下是示例查询。

insert into tbl (id,...) values (NULL,...);

希望这会有所帮助。

谢谢!

侯赛因。

Try to pass NULL value to the primary field.
Below is the sample query..

insert into tbl (id,...) values (NULL,...);

Hope this will help.

Thanks!

Hussain.

晚雾 2024-10-17 08:41:03

我正在使用PreparedStatement,但使用自动增量时遇到了困难。
就我而言,您只需执行此操作

preparedStatement.setInt(1, 0);

,1 是列的索引,0 将值递增到序列中的下一个。

I was using PreparedStatement and I was having a hard time using the autoincrement.
In my case you just have to do this

preparedStatement.setInt(1, 0);

1 is the index of the column , 0 increments the value to the next one in the sequence.

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