如何告诉 phpMyAdmin 在插入期间使用下一个自动增量值?
如果您尝试通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试将 NULL 值传递给主字段。
以下是示例查询。
希望这会有所帮助。
谢谢!
侯赛因。
Try to pass NULL value to the primary field.
Below is the sample query..
Hope this will help.
Thanks!
Hussain.
我正在使用PreparedStatement,但使用自动增量时遇到了困难。
就我而言,您只需执行此操作
,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
1 is the index of the column , 0 increments the value to the next one in the sequence.