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

What is a Control Flow Inside SSIS ?

Using MS SQL DISTINCT

What is a View in SQL Server ?

What is CHECKPOINT Process in the SQL Server ?