快速生成扩展表默认数据的脚本
程序员文章站
2022-06-19 19:16:33
declare @total int; declare @count int; set @count=0; SELECT @total=COUNT(1) FROM TB_JJ; create table #T ( rid int PRIMARY KEY, sys_guid NVARCHAR(40) ......
declare @total int; declare @count int; set @count=0; SELECT @total=COUNT(1) FROM TB_JJ; create table #T ( rid int PRIMARY KEY, sys_guid NVARCHAR(40) );
INSERT INTO #T SELECT ROW_NUMBER() over (order by sys_guid) as rid,sys_guid FROM TB_JJ;
WHILE @count<@total BEGIN set @count=@count+10000; INSERT INTO TB_JJ_Info(sys_guid) SELECT sys_guid FROM #T where rid<=@count; DELETE FROM #T where rid<=@count; END DROP TABLE #T;
上一篇: 补品中的美人胶-桃胶怎么洗?
下一篇: C#计算字符串长度,汉字算两个字符