sql Set IDENTITY_INSERT的用法
程序员文章站
2023-01-04 17:39:28
语法 set identity_insert [ database.[ owner.] ] { table } { on | off } 参数 database ,是指定的...
语法
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
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
下一篇: MSSQL 游标使用 心得