bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access LCase() Function

Example

SELECT LCASE(CustomerName) AS LowercaseCustomerName
FROM Customers;

Definition and Usage

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

Tip

Also look at the UCase() function.

Syntax

LCase(
text
)

Parameter Values

ParameterDescription
textRequired. The string to convert

Technical Details

Works in:From Access 2000

Previous

MS Access InstrRev() Function

Next

MS Access Left() Function