Simple demo for UPPER() function: convert string to upper case : UPPER « Char Functions « Oracle PL / SQL






Simple demo for UPPER() function: convert string to upper case



SQL> SELECT UPPER('Hello There') AS UPPER FROM Dual;

UPPER
-----------
HELLO THERE

SQL>
           
       








Related examples in the same category

1.Syntax: UPPER()
2.UPPER(): convert chars to upper case