SQL SERVER – Retrieving Random Rows from Table Using NEWID()

I have previously written about how to get random rows from SQL Server.

However, I have not blogged about following trick before. Let me share the trick here as well. You can generate random scripts using following methods as well.

USE AdventureWorks2012
GO
-- Method 1
SELECT TOP 100 *
FROM Sales.SalesOrderDetail
ORDER BY NEWID()
GO
-- Method 2
SELECT TOP 100 *
FROM Sales.SalesOrderDetail
ORDER BY CHECKSUM(NEWID())
GO

SQL SERVER - Retrieving Random Rows from Table Using NEWID() newidrandom

You will notice that using NEWID() in the ORDER BY will return random rows in the result set. How many of you knew this trick? You can run above script multiple times and it will give random rows every single time.

Watch a 60 second video on this subject

[youtube=http://www.youtube.com/watch?v=1d29ka0hHnc]

Note: This method can be very resource intensive for large resultsets.

Reference: Pinal Dave (https://blog.sqlauthority.com)

SQL Function
Previous Post
SQL SERVER – Concurrency Basics – Guest Post by Vinod Kumar
Next Post
SQL SERVER – Weekly Series – Memory Lane – #003 – Database Encryption

Related Posts

24 Comments. Leave new

Leave a Reply