服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - insert into select和select into的使用和区别介绍

insert into select和select into的使用和区别介绍

2020-01-15 15:26MSSQL教程网 Sql Server

insert into ... select 和 select ... into的使用上有哪些区别呢?在本文将为大家下详细介绍下,不知道的朋友可以了解下

insert into ... select ...:可将表1中的全部数据或者部分数据复制到表2中。 

eg: 

复制代码代码如下:


insert into t2(id,name,pwd) 
select id,name,pwd from t1 


注:t2必须存在。t1中查询的列名可不与t1列名相同。无 values 

select...into:查询t1中的数据,插入到t2中。 

eg: 

复制代码代码如下:


select * into t2 from t1 


注:t2被创建并填充数据。

延伸 · 阅读

精彩推荐