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 Merge Statement in SQL Server ?

What is a ROLLUP Clause in SQL Server ?

What are the Different Recovery Models Inside SQL Server ?

MS SQL Restoring a Database With a Query

MS SQL Getting List of All Column Names of a Table