如何在MySQL中手动将种子值设置为1000
我使用的是 MySQL 5。我需要将自动增量字段的种子值设置为 1000。 我该如何设置呢?
I am using MySQL 5. I need to set the seed value as 1000 for my auto increment field.
How can I set it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建表时设置:
创建表后设置:
To set when creating your table:
To set after creating the table:
如果表已经存在,您可以这样做:
但要确保 auto_increment 列中的最高值小于 1000。
如果您要创建新表,您可以这样做:
If the table already exists, you can do this:
But make sure the highest value in the auto_increment column is less than 1000.
If you are creating a new table, you can do this: