Demonstrates the LOWER function : LOWER « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- LOWER
Demonstrates the LOWER function
SQL>
SQL> SET SERVEROUTPUT ON
SQL> BEGIN
2 DBMS_OUTPUT.PUT_LINE(LOWER('CaSe'));
3 END;
4 /
case is not always important
PL/SQL procedure successfully completed.
SQL>
SQL>
Related examples in the same category