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

Getting the Id of MS SQL Server Last Entered Record

Using Trim Function in MS SQL

What is The Difference Between The Index Seek and Index Scan in S ...

Using MS SQL Order By

What is Blocking in SQL Server ?