LCASE

Converts a string to lowercase. Alias for LOWER.

Analyze Syntax

func.lcase(<str>)

Analyze Examples

func.lcase('HELLO')

┌─────────┐
 'hello'  
└─────────┘

SQL Syntax

LCASE(<str>)

SQL Examples

SELECT LCASE('HELLO');

┌───────┐
 hello  
└───────┘