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 Extensible Key Management in SQL Server ?

Benefits of Using Stored Procedures in MS SQL

What is the Difference Between Update Lock and Exclusive Lock in ...

Getting List of All Views in MS SQL Database

What is an Index in SQL Server ?