What is the best way to sort the results of a sql query into a random order within a stored procedure?
|
1
|
|
|
|
|
|
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:
|
||
|
|
|
|
|
||
|
|
|
|
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 |
||
|
|
