0

我有很多列的表 1。我想复制所有类别 = 16 的行,但我希望复制的行类别 = 17。执行此操作的正确查询是什么?谢谢。

4

1 回答 1

3
insert into Table1(category, Column1, Column2)
select 17, Column1, Column2
from Table1
where category = 16
于 2013-01-10T13:03:04.710 回答