我有一张桌子,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 上运行)