LOWER (Lakehouse v2)
Converts a string to lowercase.
Analyze Syntax
Section titled “Analyze Syntax”func.lower(<str>)Analyze Examples
Section titled “Analyze Examples”func.lower('HELLO')
┌─────────┐│ 'hello' │└─────────┘SQL Syntax
Section titled “SQL Syntax”LOWER(<str>)SQL Examples
Section titled “SQL Examples”SELECT LOWER('HELLO');
┌───────┐│ hello │└───────┘