UPPER

UPPER ( <character-expression> )

Converts a string to all upper-case characters. Returns null if the input argument is null, and the empty string if the input argument is an empty string.

Examples

values UPPER('abcDEFghi123');
+--------------+
|    EXPR$0    |
+--------------+
| ABCDEFGHI123 |
+--------------+