对查询结果进行随机排序(sql server)_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

对查询结果进行随机排序(sql server)

作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0

本篇关键词:排序随机结果进行
黑客防线网安网讯:Randomly Sorting Query Results   查询结果随机排序      Q. How can I randomly sort query results?   问:怎样才能对查询结果随机排序?     A. To randomly order rows, o...

Randomly Sorting Query Results

  查询结果随机排序   

  Q. How can I randomly sort query results?

  问:怎样才能对查询结果随机排序?  

  A. To randomly order rows, or to return x number of randomly chosen rows,

   you can use the RAND function inside the SELECT statement.

   But the RAND function is resolved only once for the entire query,

   so every row will get same value.

   You can use an ORDER BY clause to sort the rows by the result from the NEWID function,

   as the following code shows:  

  答:对结果记录随机排序或随机返回X条记录可以通过在SELECT语句中使用RAND函数来实现但是RAND函数在查询中只生成一次,因此每一行都将得到相同的值可以通过在ORDER BY子句中使用NEWID函数来对结果进行排序的方法来实现,代码如下:  

  SELECT *

  FROM Northwind..Orders

  ORDER BY NEWID()

  SELECT TOP 10 *

  FROM Northwind..Orders

  ORDER BY NEWID()

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-10473-1.html
网站维护教程更新时间:2012-03-21 03:05:13  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer