LOWER function in Amazon QLDB - Amazon Quantum Ledger Database (Amazon QLDB)

LOWER function in Amazon QLDB

In Amazon QLDB, use the LOWER function to convert all uppercase characters to lowercase characters in a given string.

Syntax

LOWER ( string )

Arguments

string

The field name or expression of data type string that the function converts.

Return type

string

Examples

SELECT LOWER('AbCdEfG!@#$') FROM << 0 >> -- 'abcdefg!@#$'

Related functions