Generating Random Letters in MS SQL

The following code is run to generate random letters in Ms Sql.

SELECT char(cast((90 - 65 )*rand() + 65 as integer))



You May Interest

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

Getting Rows in a Table in Random Order in MS SQL

Listing Metadata of MS SQL Server Internal Tables

What is the Difference Between CHAR and VARCHAR Datatypes in SQL ...

How to Rebuild the Master Database in SQL Server ?