This is a combination of the initial seed idea and a checksum, which looks to me to give properly random results without the cost of NEWID():
SELECT TOP [number] FROM table_nameORDER BY RAND(CHECKSUM(*) * RAND())
This is a combination of the initial seed idea and a checksum, which looks to me to give properly random results without the cost of NEWID():
SELECT TOP [number] FROM table_nameORDER BY RAND(CHECKSUM(*) * RAND())