LOWER() Function in SQL Server

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

Table of Content:


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