UCASE (Lakehouse v2)
Converts a string to uppercase. Alias for UPPER.
Analyze Syntax
Section titled “Analyze Syntax”func.ucase(<str>)Analyze Examples
Section titled “Analyze Examples”func.ucase('hello')
┌─────────┐│ 'HELLO' │└─────────┘SQL Syntax
Section titled “SQL Syntax”UCASE(<str>)SQL Examples
Section titled “SQL Examples”SELECT UCASE('hello');
┌───────┐│ HELLO │└───────┘