LOWER

Converts text to all lowercase characters

Description

The LOWER() function is used to transform text into lowercase characters. This function is handy for standardizing text data, making it case-insensitive, or for consistent formatting.

Syntax

LOWER(text)

  1. text: The input text string that you want to convert to lowercase.

Example

Table

ID
Original Text

1

Hello, World!

2

Example Text

3

sAvAnT aNaLyTiCs

Function

LOWER(`Original Text`)

Results

LOWER (text)

hello, world!

example text

savant analytics

Last updated