Table of Contents

    How to Use the LOWER() Function in SQL Server: A Detailed Guide

    How to Use the LOWER() Function in SQL Server: A Detailed Guide

    Syntax:

    
    LOWER(Character_Expression)
    

    Converts all the characters in the given Character_Expression, to lowercase letters.

    Code:

    
    Select LOWER('CONVERT This String Into Lower Case') 
    

    Output:

    The above code will produce the following result-

    
    convert this string into lower case