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

LCase

Example

Change the text in “CustomerName” to lowercase.

SELECT LCASE(CustomerName) AS LowercaseCustomerName
FROM Customers;

Definition and Usage

The LCase() function transforms a string into lowercase.

Tip: Consider the UCase() function as well.

Syntax

LCase(text)

Parameter Values

Parameter

Description

text

Required. Specifies the string that will be converted to lowercase.

Technical Details

Works in:

 From Access 2000