SQL SERVER中对查询结果随机排序
2007-11-11 04:23:35 来源:WEB开发网核心提示:Randomly Sorting Query Results 查询结果随机排序 Q. How can I randomly sort query results?问:怎样才能对查询结果随机排序?A. To randomly order rows, or to return x number of randomly ch
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()
查询结果随机排序
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()
- ››SQL Server 2008 R2 下如何清理数据库日志文件
- ››sqlite 存取中文的解决方法
- ››SQL2005、2008、2000 清空删除日志
- ››SQL Server 2005和SQL Server 2000数据的相互导入...
- ››sql server 2008 在安装了活动目录以后无法启动服...
- ››sqlserver 每30分自动生成一次
- ››sqlite 数据库 对 BOOL型 数据的插入处理正确用法...
- ››sql server自动生成批量执行SQL脚本的批处理
- ››sql server 2008亿万数据性能优化
- ››SQL Server 2008清空数据库日志方法
- ››sqlserver安装和简单的使用
- ››SQL Sever 2008 R2 数据库管理
更多精彩
赞助商链接