标题:求助:批量插入数据问题
只看楼主
shuiyouhan
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2006-1-12
 问题点数:0 回复次数:1 
求助:批量插入数据问题
需要插入大量数据,但是总在红色哪一行报语法错误
declare @i int
declare @count int
declare @rand int

set @count=1
set @i=1

while @i<=300000
begin
set @rand=(select cast( floor(rand()*N) as int)
insert into dbo.db_10000_SLC(Sno,Sdept,Sloe) values(@count,@rand%4,@rand);
set @count=@count+1
set @i=@i+1
end
搜索更多相关主题的帖子: 批量 数据 
2010-05-19 21:04
aei135
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:12
帖 子:232
专家分:1176
注 册:2009-4-6
得分:0 
应该是set @rand=(select cast( floor(rand()*N) as int)这行出错了,小了个括号 set @rand=(select cast( floor(rand()*N) as int))
2010-05-20 12:10



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-307372-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.417744 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved