select into:

  创建测试语句

create database MyDemoTest
go
use MyDemoTest
go
create table A
(
    a int primary key,
    b int,
)
go
insert into A values(1,1),
(2,2),
(3,3)

  执行核心语句:

select a,b into B from A

  执行结果:

  由这个结果我们可以知道,B表在插入的时候并不存在

 insert into select:

 

drop table B
create table B
(
    a int primary key,
    b int,
)
go
insert into B(a,b) select a,b from A

 

版权声明:本文为student-note原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/student-note/p/6865745.html