UPPER

Syntax

UPPER (character_expression)

Description

Converts lowercase character data to uppercase.

Arguments

character_expression An expression of any data type that can be implicitly converted to a String.

Returns

The character_expression, converted to uppercase characters, in String format.

Examples

UPPER (LEFT MyEntity.State, 4)) where State = "Oregon"

Returns: OREG

UPPER("Joan Darcy")

Returns:"JOAN DARCY"

Related Topics

Data Conversion

Text Functions

LOWER