Getting Rows in a Table in Random Order in MS SQL

In MS SQL Server, the following procedure is followed to randomly fetch all records in a table.

SELECT * FROM {Table Name} ORDER BY NEWID()


You May Interest

What is a Covered Index in SQL Server ?

How is Sqlcmd Different from Osql ?

What is SQL Profiler ?

Disable All Triggers in MS SQL Server Table

What are Wait Types in SQL Server ?