SET IDENTITY_INSERT的用法

來源:互聯網
上載者:User

 SET IDENTITY_INSERT的用法
SET IDENTITY_INSERT [ database. [ owner. ] ] { table } { ON | OFF }
--強制自增欄位可以進行插入記錄。
--Database是數據庫名稱
--Owner是表的所有名稱
--Table一個唯一欄位的表名
Examples:
-- Create products table. 創建測試表
CREATE TABLE products (id int IDENTITY PRIMARY KEY, product varchar(40))
GO
-- Inserting values into products table. 向表中插入測試數據
INSERT INTO products (product) VALUES ('screwdriver')
INSERT INTO products (product) VALUES ('hammer')
INSERT INTO products (product) VALUES ('saw')
INSERT INTO products (product) VALUES ('shovel')
GO
select * from products
-- Create a gap in the identity values. 增除數據留縫隙
DELETE products
WHERE product = 'saw'
GO
SELECT *
FROM products
--此時id=3的這條記錄不存在,被刪除。
GO
-- Attempt to insert an explicit ID value of 3;  
-- should return a warning.   此時插入數據會出錯。被中斷
INSERT INTO products (id, product) VALUES(3, 'garden shovel')
--提示:Cannot insert explicit value for identity column in table 'products' when IDENTITY_INSERT is set to OFF.
--當IDENTITY_INSERT 設定 OFF時,不能在表products裡明確(也就是具體的自增自段值)的插入自增資料.
GO
-- SET IDENTITY_INSERT to ON.
SET IDENTITY_INSERT products ON
GO

-- Attempt to insert an explicit ID value of 3  將成功
INSERT INTO products (id, product) VALUES(3, 'garden shovel')
GO

SELECT *
FROM products
GO
-- Drop products table.
SET IDENTITY_INSERT products OFF
DROP TABLE products
GO

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.