What is the best way to sort the results of a sql query into a random order within a stored procedure?
|
feedback
|
|
This is a duplicate of SO# 19412. Here's the answer I gave there:
In SQL Server 2005 and up, you can use TABLESAMPLE to get a random sample that's repeatable:
| |||
|
feedback
|
|
You can't just ORDER BY RAND(), as you know, because it will only generate one value. So use a key for a seed value. SELECT RAND(object_id), object_id, name FROM sys.objects ORDER BY 1 | |||
|
feedback
|
|
Or use the following query, which returns a better random sample result:
0.01 means ~1 percent of total rows. Quote from SQL 2008 Books Online:
| |||
feedback
|