UPPER() Function in SQL Server
Table of Content:
Syntax:
UPPER(Character_Expression)
Converts all the characters in the given Character_Expression, to uppercase letters.
Code:
Select UPPER('CONVERT This String Into upper Case')
Output:
The above code will produce the following result-
CONVERT THIS STRING INTO UPPER CASE