create table as select * from和insert into select from两种表复制语句区别
create table targer_table as select * from source_table
insert into target_table(column1,column2) select column1,column2 from source_table
以上两句都是将源表source_table的记录插入到目标表target_table,但两句又有区别。
第一句(create table as select * from)要求 目标表target_table不存在,因为在插入时会自动创建。
第二句(insert into select from)要求 目标表target_table存在,由于目标表已经存在,所以我们除了插入源表source_table的字段外,还可以插入常量,如sql语句:
insert into target_table(column1,column2) select column1,5 from source_table
例中的:5;
无论是create table as select * from还是insert into select from, from后面的都是源表(source_table);
1、Insert into Select from 语句
语句形式为:Insert into targer_table(field1,field2,...) select value1,value2,... fr