0

我有一张桌子,Table_1

 name      id
 ABC       A001
 BCD       A002
 CDE       A003

因此,如果我创建具有与 Table_1 相同属性的 Table_2,我尝试使用以下查询将 Table_1 的所有行复制到 Table_2,但不确定

Insert into Table_2 values (Select * from Table_1)

并且如果我用一个额外的列扩展 Table_1 并创建第三个 Table_3,是否可以将 Table_1 记录复制到 Table_3(比如 Table_1 有 (name, id) & Table_3 (name, id, passwd))

(在 MS Sql server 2005 上运行)

4

1 回答 1

0

而不是问你有没有试过这样做?这不是一个很难设置的测试案例。

于 2013-03-28T12:41:32.293 回答