lena和shane,家庭日志,xulavigne,Lena&Shane

如何实现

select into from 和 insert into select from 的区别

2018-07-18 Shane Jhu

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。


本文由lenashane.com原创,转载请注明出处:查看原文

如果觉得文章还不错,请点个赞吧


2月 27 2025
成年人身上的天真往往很迷人,但若是加上虚荣,就和愚蠢没什么区别。

埃里克·霍弗 (Eric Hoffer 美国作家)