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

How is Sqlcmd Different from Osql ?

Getting Character Count in MS SQL

MS SQL Finding Which Tables a Column Name is In

Which TCP/IP Port Does the SQL Server Run On ?

What is TABLESAMPLE in SQL Server ?