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