UPPER returns a VARCHAR value containing the argument converted to upper case letters.
Syntax
UPPER ( expression )
Semantics
expression |
(CHAR or VARCHAR) is the string to convert |
Examples
> SELECT UPPER('AbCdEfG');
upper
----------
ABCDEFG
(1 row)