Syntax: |
string = UCASE(string)
|
The UCASE
function converts a string to upper case. The argument
should be a string and it returns a string. The argument is not modified.
Example
function | result |
UCASE('this is a string') |
THIS IS A STRING |