Converts the input parameter's contents from lower/mixed case to upper case.
convertedText = UCASE( text )
The function has the following parameters:
Parameter | Description | |
---|---|---|
text | A string of data. |
Upper case text.
The function is a wrapper around a "convert @lower_case to @upper_case in text" statement. It is more efficient to use a "convert" statement than to use the UCASE function.
declare function UCASE text = "All work and no play make Jack a dull boy." uText = UCASE( text ) * After execution, uText will contain "ALL WORK AND NO PLAY MAKE JACK A DULL BOY."