我有一个包含9条记录的表,但我想在第5和第6条记录之间插入一行.
最佳答案
如果你坚持的话
UPDATE mytable SET id = id + 1 where id > 5 ORDER BY id ASC
insert into mytable (id,..) values (6,...)