从另一个表插入选定的数据

时间:2019-11-10 13:43:37

标签: sql sql-server

表1

Code | Description
Ab | Sample
Cd | Sample1
De | Sample2
Fg | Sample3
Hi | Sample4
Jk | Sample5

我有插入到另一个表中的示例数据,但仅是所选数据。 例如:在一个查询中,仅将table1中的代码“ ab”,“ fg”和“ jk”插入到另一个表中。

有可能吗?

1 个答案:

答案 0 :(得分:1)

是可能的。您可以使用以下查询来实现。

Insert into table2(Code, Description)
Select Code, Description from table1 where Code in('ab' ,'fg','jk')