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 a Local and a Global Temporary Tab ...

Using MS SQL If Else

Showing Server Active Server Name in MS SQL

Getting List of All Server Databases in MS SQL

What are the Various Limitations of the Views in SQL Server ?