Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
将字符串中的所有字符转换成小写形式。
LCASE( string-expression )
string-expression 要转换成小写形式的字符串。
LCASE 函数与 LOWER 函数完全相同。
SQL/2008 服务商扩充。等价函数 LOWER 是 SQL/2008 标准的核心功能。
以下语句返回值 chocolate:
chocolate
SELECT LCASE( 'ChoCOlatE' );