亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SQL Server之SELECT INTO 和 INSERT INTO SELECT的示例分析

發布時間:2021-08-31 09:10:22 來源:億速云 閱讀:158 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關SQL Server之SELECT INTO 和 INSERT INTO SELECT的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

做數據庫開發的過程中難免會遇到有表數據備份的,而SELECT INTO……和INSERT INTO SELECT…… 這兩種語句就是用來進行表數據復制,下面簡單的介紹下:

1、INSERT INTO SELECT

語句格式:Insert Into Table2(column1,column2……) Select value1,value2,value3,value4 From Table1 或 Insert Into Table2 Select * From Table1

說明:這種方式的表復制必須要求Table2是事先創建好的

例:

--1.創建表
create TABLE Table1
(
    a varchar(10),
    b varchar(10),
    c varchar(10)
) ;

create TABLE Table2
(
    a varchar(10),
    c varchar(10),
    d varchar(10)
);
commit;
--2.創建測試數據
Insert into Table1 values('趙','asds','90');
Insert into Table1 values('錢','asds','100');
Insert into Table1 values('孫','asds','80');
Insert into Table1 values('李','asds',null);
commit;
--3.復制table1數據到table2中
Insert into Table2(a, c, d) select a,b,c from Table1;
commit;
--或,此種方式必須要求table2和table1的列數相等,而且類型兼容
Insert into Table2 select * from table1;
commit;

以上這些sql在oracle和MS SqlServer中的語法是一樣的,可以通用.

2、SELECT INTO……

這種方式的語句可以在Table2不存在的時候進行表數據復制,編譯器會根據Table1的表結構自動創建Table2,Table2和Table1的結構基本上是一致的,但是如果已經存在Table2,則編譯器會報錯.

這種方式的語句在Oracle中和MS SqlServer中是有點差別的,,如下:

語句格式:

Oracle:Create Table2 as Select column1,column2……From Table1 或 Create Table2 as Select * From Table1

MS SqlServer:Select column1,column2…… into Table2 From Table1 或 Select * into Table2 From Table1

例:

--Oracle
--1.創建表
create TABLE Table1
(
    a varchar(10),
    b varchar(10),
    c varchar(10)
) ;

commit;
--2.創建測試數據
Insert into Table1 values('趙','asds','90');
Insert into Table1 values('錢','asds','100');
Insert into Table1 values('孫','asds','80');
Insert into Table1 values('李','asds',null);
commit;
--3.復制table1數據到table2中
Create Table Table2 as select a,b,c From table1;
Commit;
--或(這兩種方式的sql只能應用一次)
Create table table2 as select * From Table1;
Commit;
--刪除表
drop table table1;
drop table table2;
commit;
--MS SqlServer
--1.創建表
create TABLE Table1
(
    a varchar(10),
    b varchar(10),
    c varchar(10)
) ;

commit;
--2.創建測試數據
Insert into Table1 values('趙','asds','90');
Insert into Table1 values('錢','asds','100');
Insert into Table1 values('孫','asds','80');
Insert into Table1 values('李','asds',null);
commit;
--3.復制table1數據到table2中
Select a,b,c into Table2 From table1;
Commit;
--或(這兩種方式的sql只能應用一次)
Select * into table2 From Table1;
Commit;
--刪除表
drop table table1;
drop table table2;
commit;

關于“SQL Server之SELECT INTO 和 INSERT INTO SELECT的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沭阳县| 新闻| 平和县| 乡宁县| 姚安县| 芒康县| 田东县| 舟山市| 沁源县| 资源县| 镇安县| 齐河县| 马关县| 朝阳县| 株洲县| 长宁区| 山阳县| 榆林市| 河间市| 大安市| 炎陵县| 广州市| 贵阳市| 揭西县| 荆州市| 铜鼓县| 抚远县| 丰镇市| 延长县| 宜昌市| 阿拉善右旗| 余庆县| 怀远县| 方正县| 通渭县| 萍乡市| 宁蒗| 连江县| 奇台县| 霍山县| 裕民县|