SQLSERVER中对查询结果随机排序

2008-04-02 10:49:31来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

译:SQL SERVER中对查询结果随机排序

chinaitpower.comgayEB

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()


作者:Water chinaitpower.comgayEB


标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: XML 视图中的 ID 属性

下一篇: 如何恢复系统数据库?