select into from和insert into select区别(sql数据库)

发布时间:2019-08-08编辑:脚本学堂
有关sql数据库中select into from和insert into select的区别,源表source_table的记录插入到目标表,旧表中字段复制到另外一张新表中。

sql语句
 

select * into target_table from source_table;
insert into target_table(column1,column2) select column1,5 from source_table;

将源表source_table的记录插入到目标表target_table。

以上语句的区别: 
第一句(select into from)要求目标表target_table不存在,因为在插入时会自动创建。
第二句(insert into select from)要求目标表target_table存在,由于目标表已经存在,

除了插入源表source_table的字段外,还可以插入常量,如例中的:5。

把一张旧表中字段复制到另外一张新表中,sql语句:
 

select * into 新表 from 旧表 where 新表.id=旧表.id