程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> insert into select和select into的使用和區別介紹

insert into select和select into的使用和區別介紹

編輯:關於SqlServer
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被創建並填充數據。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved