Simple demo for UPPER() function: convert string to upper case : UPPER « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- UPPER
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