LOWER

Returns a string with all characters changed to lowercase.

Analyze Syntax

func.lower(<str>)

Analyze Examples

func.lower('Hello, PlaidCloud!')
┌──────────────────────────────────┐
 func.lower('Hello, PlaidCloud!') 
├──────────────────────────────────┤
 hello, plaidcloud!               
└──────────────────────────────────┘

SQL Syntax

LOWER(<str>)

Aliases

Return Type

VARCHAR

SQL Examples

SELECT LOWER('Hello, Databend!'), LCASE('Hello, Databend!');

┌───────────────────────────────────────────────────────┐
 lower('hello, databend!')  lcase('hello, databend!') 
├───────────────────────────┼───────────────────────────┤
 hello, databend!           hello, databend!          
└───────────────────────────────────────────────────────┘