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 Have INCLUDED Columns With SQL Server Indexes ?

General Information List of All Allowed Databases in MS SQL Serve ...

What are Sparse Columns in SQL Server ?

What is the XML Datatype in SQL Server ?

What is SQL Profiler ?