语法
SET IDENTITY_INSERT [ database.[ owner.] ] { table } { ON | OFF }
参数
database ,是指定的表所驻留的数据库名称。
owner
是表所有者的名称。
table
是含有标识列的表名。
使用举例子,往数据库中插入100万条记录。
复制代码 代码如下:
set identity_insert sosuo8database on
declare @count int
set @count=1
while @count<=1000000
begin
insert into sosuo8database(id,userName,userPWD,userEmail) values(@count,'ahuinan','ahuinan','sosuo8.com') set @count=@count+1
end
set identity_insert sosuo8database off
sql Set IDENTITY_INSERT的用法
2021-05-23 21:31:41声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。 如涉及版权问题,请提交至online#300.cn邮箱联系删除。
热门文章