MS Access LCase() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MS Access LCase() Function

❮ MS Access Functions

Example

Convert the text in "CustomerName" to lower-case:

SELECT LCASE(CustomerName) AS LowercaseCustomerName
FROM Customers;
Try it Yourself »

Definition and Usage

The LCase() function converts a string to lower-case.

Syntax

LCase(text)

Parameter Values

Parameter Description
text Required. The string to convert to lower-case

Technical Details

Works in: Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000

❮ MS Access Functions