Link Search Menu Expand Document

LOWER

Converts the string to a lowercase format.

Syntax

LOWER(<string>)
Parameter Description
<string> The string to be converted.

Example

SELECT
	LOWER('ABCD');

Returns: abcd