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.
我试图通过谷歌搜索找到正确的方法,但我没有发现任何有用的东西。
我想在 id 60 之前插入一行,并且id是一个自动递增的值。最后,我想让 的所有值都id增加 1,这样 . 的主键上就不会发生冲突id。
id
试试这个::
第1步:
update table set id=id+1 where id>=60
第2步:
Insert into table(id, column1....) values (60,....)