当前位置:网站首页>Oracle/PLSQL: Lower Function

Oracle/PLSQL: Lower Function

2022-06-27 01:35:00 yuanlnet

In Oracle/PLSQL, the lower function converts all letters in the specified string to lowercase. If there are characters in the string that are not letters, they are unaffected by this function.

Syntax

The syntax for the lower function is:

lower( string1 )

string1 is the string to convert to lowercase.

Applies To

  • Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i

For Example

lower('Tech on the Net');

would return 'tech on the net'

lower('GEORGE BURNS 123   ');

would return 'george burns 123   '

原网站

版权声明
本文为[yuanlnet]所创,转载请带上原文链接,感谢
https://blog.csdn.net/yuanlnet/article/details/124632894