UPPER Function

Converts a string to uppercase.

Category: String
Returned data type: String

Syntax

UPPER(source)

Required Argument

source

specifies a string constant, a field name, or an expression.

Note If source is NULL, the function returns a NULL value.

Example

source = "MÜNCHEN in Germany"
upcase_string = upper(source) // outputs "MÜNCHEN IN GERMANY"