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