Table of Contents

    How to Use the UPPER() Function in SQL Server: A Complete Guide

    How to Use the UPPER() Function in SQL Server: A Complete Guide

    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