Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想截断一些值,但我不想删除其他值...
我有 3 个 id,下一个 id 将是 14 或类似的东西...我希望下一个 id 将是 4... 我该怎么做?
我有一个解决方案,但我喜欢其他更简单的解决方案。我可以导出所有表,截断它,然后再导入它。但这是很多工作。:P
您可以auto_increment在删除记录后设置下一个值
auto_increment
ALTER TABLE your_table AUTO_INCREMENT = 4;