Insert是T-sql中常用语句,Insert INTO table(field1,field2,...) values(value1,value2,...)这种形式的在应用程序开发中必不可少。
但我们在开发、测试过程中,经常会遇到需要表复制的情况,如将一个table1的数据的部分字段复制到table2中,或者将整个table1复制到table2中,这时候我们就要使用以下复制语句了。
1.INSERT INTO SELECT语句
语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Table1
要求目标表Table2必须存在,由于目标表Table2已经存在,所以我们除了插入源表Table1的字段外,还可以插入常量。示例如下:
Insert into Table2(a, c, d) select a,c,5 from Table1
2.
create table table1 as select xx,xx from table2
语句形式为:create table1 xx as select 字段1, 字段2 from Table2
要求目标表Table1不存在,因为在插入时会自动创建表Table1,并将Table2中指定字段数据复制到Table1中。示例如下:
--3.create table table1 as select xx,xx from table2语句创建表Table2并复制数据 create table t22 as select keywords,f_customer_id from generaltypes