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插入技巧详解
本文详细介绍了两种不同的SQL插入方法:一种是使用select * into从源表source_table向目标表target_table进行插入,这种方式要求目标表不存在;另一种是使用insert into select from的方式,允许向已存在的目标表中插入数据,并且可以插入常量。

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



