I know that the normal way to shuffle results with SQL Server is to order by NEWID(), except I'd like to instead use a weighted shuffle.

Each record in my table has an integer 'Importance' from 1 to 10. I'd like to order by RAND()*Importance, except SQL Server has RAND() return the same value for each record returned.

Any ideas please?

link|improve this question

do you mean order by weight, random, or just some kind of "loaded dices" where record with 10 will be probably before record with 1? – piotrpo Jul 6 '11 at 18:18
Loaded dices. If I have two records, with Importance values of 1 and 10, I'd expect to see the one with 10 to appear first around 9 out of 10 times. – billpg Jul 6 '11 at 18:29
feedback

1 Answer

up vote 1 down vote accepted

Take a look at SQL Server - Set based random numbers for some ideas

link|improve this answer
Thanks. ABS(CHECKSUM(NEWID())) / 100 * Importance did the job perfectly. – billpg Jul 6 '11 at 18:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.