急!批量修改SQL数据库的某一列,随机赋予几个值 150
数据表位A_ziliao列为sheng如何批量将:上海、北京、重庆、天津这4个值随机写进去?急求,会追加分将这些随机改成上海、北京、重庆、天津的一个...
数据表位A_ziliao 列为 sheng
如何批量将:上海、北京、重庆、天津
这4个值随机写进去?
急求,会追加分
将这些随机改成上海、北京、重庆、天津的一个 展开
如何批量将:上海、北京、重庆、天津
这4个值随机写进去?
急求,会追加分
将这些随机改成上海、北京、重庆、天津的一个 展开
3个回答
展开全部
数据表位A_ziliao 有一标志id
首先建立一个过渡表(id,地名)
用游标查询数据表A_ziliao记录id
更改列 sheng 为随机值
declare @fid int,@nn int
declare cursor3 cursor for --定义游标cursor3
select id from A_ziliao --使用游标的对象(跟据需要填入select文)
open cursor3 --打开游标
fetch next from cursor3 into @fid
while @@fetch_status=0 --判断是否成功获取数据
begin
set @nn =4*rand +1'随机id
update A_ziliao set sheng=(select 地名 from 过渡表 where id= @nn )where id=@fid
fetch next from cursor3 into @fid --将游标向下移1行
end
close cursor3 --关闭游标
deallocate cursor3
首先建立一个过渡表(id,地名)
用游标查询数据表A_ziliao记录id
更改列 sheng 为随机值
declare @fid int,@nn int
declare cursor3 cursor for --定义游标cursor3
select id from A_ziliao --使用游标的对象(跟据需要填入select文)
open cursor3 --打开游标
fetch next from cursor3 into @fid
while @@fetch_status=0 --判断是否成功获取数据
begin
set @nn =4*rand +1'随机id
update A_ziliao set sheng=(select 地名 from 过渡表 where id= @nn )where id=@fid
fetch next from cursor3 into @fid --将游标向下移1行
end
close cursor3 --关闭游标
deallocate cursor3
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接建个页面搞啊,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询