create table foo (id PK, value integer)
insert into foo (1, 1)
insert into foo (2, 2)
insert into foo (3, 3)
如果我删除所有插入的值并重新插入语句
- 这些值不是以 1 开头的,即使我的脚本说 1。我该如何控制它?
- 如果我错误地插入了主键,有没有办法单独更新主键。
IE
insert into foo (4, 4)
insert into foo (6, 6)
我想将 key=6 更新为 key=5。那可能吗?