Skip to content

Returns a string with all characters changed to lowercase.

func.lower(<str>)
func.lower('Hello, PlaidCloud!')
┌──────────────────────────────────┐
│ func.lower('Hello, PlaidCloud!') │
├──────────────────────────────────┤
│ hello, plaidcloud! │
└──────────────────────────────────┘
LOWER(<str>)

VARCHAR

SELECT LOWER('Hello, Databend!'), LCASE('Hello, Databend!');
┌───────────────────────────────────────────────────────┐
lower('hello, databend!') │ lcase('hello, databend!') │
├───────────────────────────┼───────────────────────────┤
│ hello, databend! │ hello, databend! │
└───────────────────────────────────────────────────────┘