UPPER() Function in SQL Server

Rumman Ansari   Software Engineer   2023-03-25   5545 Share
☰ Table of Contents

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