insert into select

Posted xmsx

tags:

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

我们可以从一个表中复制所有的列插入到另一个已存在的表中:

INSERT INTO table2
SELECT * FROM *table1;

或者我们可以只复制希望的列插入到另一个已存在的表中:

INSERT INTO table2
(column_name(s))
SELECT column_name(s) FROM table1;

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

insert into 插入数据问题在线等

VB insert into 的用法

sql [INSERT INTO] #Syntax #Insert_into

insert into的用法

用insert into 怎么添加多条记录

自增列和insert into的问题