Demonstrates the LOWER function : LOWER « Char Functions « Oracle PL / SQL






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

1.Simple demo for LOWER() function: convert string to lower case
2.LOWER: convert char/string to lower case
3.select lower( table_name )