sql数据库 能否重设某行 某列的值为随机数呢?
updatetabelsetmoods=?whereIDbetween1and1000请教个问题,问号部分能否显示为某区间的随机数字呢?比如1-200之间随机某个数值...
update tabel set moods=? where ID between 1 and 1000
请教个问题,问号部分能否显示为某区间的随机数字呢? 比如1-200之间随机某个数值 展开
请教个问题,问号部分能否显示为某区间的随机数字呢? 比如1-200之间随机某个数值 展开
5个回答
展开全部
可以,各种数据库一般的有随机函数,你把?部分替换成随机函数就可以了,各种数据库不一样
例如oracle可以写成update tabel set moods=cast(dbms_random.value*200+1 as integer) where ID between 1 and 1000
例如oracle可以写成update tabel set moods=cast(dbms_random.value*200+1 as integer) where ID between 1 and 1000
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-06-10
展开全部
sql的rand函数种子必须是不同的,取出来的数才不同,而且在很短时间内取出的数大小差不多,一般要到小数点后3、4位才开始变化,可以这样:把字段id值作为种子,取出的数放大(如乘以100000,具体自定),然后对200取模
update tabel set moods=cast((rand(id)*100000) as int)%200 where ID between 1 and 1000
update tabel set moods=cast((rand(id)*100000) as int)%200 where ID between 1 and 1000
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update tabel set moods=cast(ceiling(rand() * 200) as int) where ID between 1 and 1000 这个就是了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update tabel set moods=rand(1,200) where ID between 1 and 1000
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update tabel set moods=cast(ceiling(rand() * 200) as int) where ID between 1 and 1000
追问
你这个是所有行 都插入一个固定的随机数了
我想插入不同的,每行插入不同的值
追答
那这样就行了:
update tabel set moods=(select cast(ceiling(rand(checksum(newid()))*200) as int)) where ID between 1 and 1000
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |