TO_UPPER
Description
TO_UPPER
is a row function that converts all alphabetic characters in a
Text
value to upper case.Syntax
TO_UPPER
(string_expression
)Return Value
Returns one value per row of type
Text
.Input Parameters
- string_expression
- Required. The name of a field or expression of typeText(or a literal string).
Examples
TO_UPPER("123 Main Street")
Returns
123 MAIN STREET