devxlogo

Returning a Random set of Records

Returning a Random set of Records

The NEWID() function returns a uniqueidentifier for each row of data that is returned.

Execute the following query in the AdventureWorks database:

select top 5 productid, name from production.productorder by newid()

Here are the results:

productid   name----------- --------------------------------------------------917         LL Mountain Frame - Silver, 42722         LL Road Frame - Black, 58372         Thin-Jam Hex Nut 8969         Touring-1000 Blue, 60328         Mountain End Caps(5 row(s) affected)

Execute the query again and you get a completely different set of results:

productid   name----------- --------------------------------------------------861         Full-Finger Gloves, S440         Lock Nut 16526         HL Shell451         Lock Nut 11406         External Lock Washer 5(5 row(s) affected)
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist