UPPER
Learn how to use the UPPER string function in PlaidCloud Lakehouse. Converts a string to uppercase - see syntax, examples, and output.
Converts a string to uppercase.
Analyze Syntax
func.upper(<str>)
Analyze Examples
func.upper('hello')
┌─────────┐
│ 'HELLO' │
└─────────┘
SQL Syntax
UPPER(<str>)
SQL Examples
SELECT UPPER('hello');
┌───────┐
│ HELLO │
└───────┘