SQL Server LOWER() Function
Definition and Usage
The LOWER() function converts a string to lower-case.
Note: See also the UPPER() function.
Syntax
LOWER(string)
Parameter Values
Parameter | Description |
---|---|
string | Required. The string to convert to lower-case |
Technical Details
Works in: | SQL Server 2014, SQL Server 2012, SQL Server 2008 R2, SQL Server 2008, SQL Server 2005 |
---|
More Examples
Example
Convert the text in "CustomerName" to lower-case:
SELECT LOWER(CustomerName) AS LowercaseCustomerName
FROM Customers;
Try it Yourself »