Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

LCase() and UCase () Function in MS Access

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

1. LCase() Function :
In MS Access the LCase() function converts the text to lowercase from uppercase. In this function, a string is passed as a parameter and it will return the string in lowercase as a result.

Syntax :

LCase(text)

Example –

SELECT LCASE("GeekForGeeks") 
AS LowercaseName

Output –

LowercaseName
geeksforgeeks

Example –

SELECT LCASE("GFG") 
AS LowercaseName

Output –

LowercaseName
gfg



2. UCase() Function :
It works like LCase() function but it converts the given string in the uppercase. In this function, a text will be passed and it will return the string in uppercase.

Syntax :

UCase(text)

Example –

SELECT UCASE("GeekForGeeks") 
AS UppercaseName

Output –

UppercaseName
GEEKSFORGEEKS

Example –

SELECT UCASE("gfg") 
AS UppercaseName

Output –

UppercaseName
GFG
My Personal Notes arrow_drop_up
Last Updated : 28 Aug, 2020
Like Article
Save Article
Similar Reads