插入“id”可能会产生什么后果?在任何自动递增的“id”中包含表?

发布于 2024-08-30 11:10:49 字数 197 浏览 0 评论 0原文

在任何包含自动增量“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 技术交流群。

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

发布评论

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

评论(1

夏日落 2024-09-06 11:10:49

如果需要,您可以这样做。该表会跟踪 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 the AUTO_INCREMENT value appropriately.

Basically, inserts always start from the highest auto_increment id + 1, and you can insert specific ids with no problems.

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