String Function in SQL

2.LOWER
This will convert the string into lowercase.
Syntax: lower (string)
Ex:
SQL> select lower(‘COMPUTER’) from dual;

output computer

lower Function in SQl

Leave a Reply