Returns its string argument in all upper case.
string
upper("Sally")
In this example, upper returns “SALLY”.
upper
upper(string expr str)
str: expression evaluating to string
upper sets to upper case all alphabetic characters in str and returns the result.
Content