程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> 更多數據庫知識 >> 數據庫插入數據之select into from與insert into select區別詳解

數據庫插入數據之select into from與insert into select區別詳解

編輯:更多數據庫知識

可能第一次接觸select...into...from...和insert into...select...有很多人都會誤解, 從表面上看都是把相關信息查詢出來,然後添加到一個表裡,其實還遠遠沒有這麼簡單,接下來,小豬就用最普通的表述給大家介紹一下這兩者間的區別。

步驟/方法

1、首先,我們來看一下insert into select語句,其語法形式為:Insert into Table2(field1,field2,...) select value1,value2,... from Table1。

select into from與insert into select區別詳解 

2、這裡的要求就是Table2必須已經存在,如果不存在,系統則會提示對象無效。

select into from與insert into select區別詳解 

3、同時因為Table2已經存在,所以我們就可以任意的向Table2中加入符合列類型的內容,當然也包括常量,也許通過下面的圖,你就會發現,在導入常量時候的不尋常現象了。

select into from與insert into select區別詳解 

4、接下來說一下select into from 語句,該語法形式為:SELECT vale1, value2 into Table2 from Table1。

select into from與insert into select區別詳解 

5、這裡要求的是MyTable1不存在,因為在插入的時候,系統會自動創建MyTable1,如果之前MyTable1已經被創建,系統就會提示已經存在表。

select into from與insert into select區別詳解 

6、就是因為這個特性,就會給我們帶來很多的方便,首先,我如果只想要MyTable2表中的ID列的話那我只需要將ID列select出來,然後加入到新表中即可。

select into from與insert into select區別詳解 

7、那如果我想要MyTable2中的Name列,那我也僅僅是需要把Name列select出來,然後添加到新表中即可。

select into from與insert into select區別詳解 

END

注意事項

應用范圍由實踐者自己找到答案~

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved