插入“id”可能会产生什么后果?在任何自动递增的“id”中包含表?
在任何包含自动增量“id”的表中插入“id”可能会产生什么后果?
如果我有一个 Tabe,其中我已将列“id”配置为自动递增,但我仍然使用定义了 id 的 INSERT 查询,就像明智的 INSERT INTO XYZ (id) values ('26' );
它将如何影响表格以及与之相关的流程。 这样做“没有问题”吗?还是应该避免?
What could be the Consequence of inserting "id" in any autoincrementing 'id' containing table?
If I have a Tabe in which I have configured the column "id" as the auto incrmented, But still I am using an INSERT query in which id is defined, like wise INSERT INTO XYZ (id) values ('26');
How does it going to effect the table and the process related to it..
Is it "no issues" to do this? or it should be avoided?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果需要,您可以这样做。该表会跟踪 AUTO_INCRMENT 数字所在的位置,如果您插入的数字等于或大于该数字,则 MySQL 会相应地调整 AUTO_INCRMENT 值。
基本上,插入总是从最高的 auto_increment id + 1 开始,并且您可以毫无问题地插入特定的 id。
You can do this if you need to. The table keeps track of what the
AUTO_INCREMENT
number is at, and if you insert a number equal to or higher than this number, then MySQL adjusts theAUTO_INCREMENT
value appropriately.Basically, inserts always start from the highest auto_increment id + 1, and you can insert specific ids with no problems.