Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
将字符串中的所有字符转换成小写形式。此函数与 LCASE 函数完全相同。
LOWER( string-expression )
string-expression 要转换成小写形式的字符串。
与参数的数据类型对应的 CHAR、VARCHAR、或 LONG VARCHAR。
LCASE 函数与 LOWER 函数完全相同。
SQL/2008 LOWER 函数是 SQL/2008 标准的核心特性。
以下语句返回值 chocolate。
SELECT LOWER( 'chOCOLate' );