UPPER
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 │
└───────┘
Converts a string to uppercase.
func.upper(<str>)
func.upper('hello')
┌─────────┐
│ 'HELLO' │
└─────────┘
UPPER(<str>)
SELECT UPPER('hello');
┌───────┐
│ HELLO │
└───────┘