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。
-----------------------------------------------------------------------------------
select into from 是从一个表或查询生成一个表。
insert into select 是向一个表或查询插入记录。
-----------------------------------------------------------------------------------
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。
-----------------------------------------------------------------------------------
select into from 是从一个表或查询生成一个表。
insert into select 是向一个表或查询插入记录。
-----------------------------------------------------------------------------------
本文详细介绍了两种SQL数据插入方法:select into from 和 insert into select from。前者用于从一个查询或表生成新表,并要求目标表不存在;后者则用于向已存在的表中插入记录,且可以插入常量值。
229

被折叠的 条评论
为什么被折叠?



