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






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

1.LOWER: convert char/string to lower case
2.select lower( table_name )
3.Demonstrates the LOWER function