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 Blocking in SQL Server ?

What is the Difference Between Clustered and a Non-clustered Inde ...

Listing Metadata of MS SQL Server Internal Tables

How is Auditing Different From Change Data Capture in SQL Server?

What is Partial Cache Mode in SSIS ?