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

Changing Column Name of MS SQL Table with Query

Deleting Columns From a Table with a Query in MS SQL

What is Extensible Key Management in SQL Server ?

What is The Concept of Piecemeal Restore on SQL Server ?

What is TABLESAMPLE in SQL Server ?