UPPER
Returns the string argument in upper case.
Syntax​
UPPER ( string_expression )
Arguments​
string_expression
A valid string expression.
Return Type​
Returns values of type STRING.
Examples​
Examples in this section use the example blockchain.
The following example returns "dinosaur" in upper case.
SELECT UPPER("dinosaur");
Response:
UPPER(str) [STRING]
DINOSAUR