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  
└───────┘