LOWER
Returns a string with all characters changed to lowercase.
Syntax
LOWER(<str>)
Aliases
Return Type
VARCHAR
Examples
SELECT LOWER('Hello, DataLake!'), LCASE('Hello, DataLake!');
┌───────────────────────────────────────────────────────┐
│ lower('hello, datalake!') │ lcase('hello, datalake!') │
├───────────────────────────┼───────────────────────────┤
│ hello, datalake! │ hello, datalake! │
└───────────────────────────────────────────────────────┘