Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

LOWER

Example

Convert the text to lowercase.

SELECT LOWER(‘SQL Tutorial is FUN!’);

Definition and Usage

The LOWER() function converts a string to lowercase.

Note: Also see the UPPER() function.

Syntax

LOWER(text)

Parameter Values

Parameter

Description

text

Required: The string to be converted.

Technical Details

Works in:

 SQL Server (since 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse

More Examples

Example

Convert the text in “CustomerName” to lowercase.

SELECT LOWER(CustomerName) AS LowercaseCustomerName
FROM Customers;