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 ...

What are the Different Recovery Models Inside SQL Server ?

What are the Events On Default Trace in SQL Server ?

What is Extensible Key Management in SQL Server ?

What is a ROLLUP Clause in SQL Server ?