Select into 与 Insert into … select … from

Posted 奥蕾莉亚·风行者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Select into 与 Insert into … select … from相关的知识,希望对你有一定的参考价值。

select 列名列表 into 新表名 from 原表名
(新表名:如果以“#”号开头的表名是临时表,没有则是永久表。)

 

Insert into Table2(field1,field2,…) select value1,value2,… from Table1
要求目标表Table2必须存在,field1,field2,…与value1,value2,…类型必须一一对应

 

以上是关于Select into 与 Insert into … select … from的主要内容,如果未能解决你的问题,请参考以下文章

Select into 与 Insert into … select … from

select into from 与insert into select from区别

select into from 与 select into from opendatasource

insert into的用法

MYSQL insert into select 锁表问题

select into from 和 insert into select的使用