当前位置:数据库 > SQLServer >>

sql server2005随机输出3个数!

随机数出3个数并按由小到大的顺序输出!
追问:请问cast怎么用!我们没学这个函数,百度上好像是说类型转换函数。
答案:select * from 
(
select cast(ceiling(rand() * 1000) as int) as number
union all
select cast(ceiling(rand() * 1000) as int)
union all
select cast(ceiling(rand() * 1000) as int)
) as a
order by number


1000 是范围 指 从 1~1000,注意有时可能会有重复值。

上一个:您好 我想请教如何连接MSSQL Server和TOMCAT.成功使用我现在下载的这个系统~
下一个:mssql无法连接与server服务

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,