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

How to Show Line Numbers in MS SQL Server ?

Using MS SQL If Else

Getting List of All Server Databases in MS SQL

Adding Columns to a Table with a Query in MS SQL

What are OFFLINE Datafiles with SQL Server ?