This function is used to convert all characters of a string to the upper case.
upper(string A)
or
ucase(string A)
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
A |
Yes |
STRING |
Text string to be converted |
The return value is of the STRING type.
Converts lowercase characters in a string to the upper case. An example command is as follows:
The value ABC is returned.
select upper('abc');
The value of the input parameter is NULL. An example command is as follows:
The value NULL is returned.
select upper(null);