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, Value 1,1 1,2 1,3
现在我要做的是一个插入语句,它将获取 ID '1' 的所有行并再次将其插入,但 ID 为 2。ID 不是唯一的。
有没有一种方法可以做到这一点,而无需遍历所有行并使用常规的 Select, then insert 语句逐个插入?
尝试这个:
insert into TABLENAME (id,value) select 2, Value from TABLENAME where id = 1