Simple demo for LOWER() function: convert string to lower case : LOWER « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- LOWER
Simple demo for LOWER() function: convert string to lower case
SQL>
SQL> SELECT LOWER('Hello There') AS UPPER FROM Dual;
UPPER
-----------
hello there
Related examples in the same category