Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » SQL Functions » Alphabetical list of functions

LOG10 function [Numeric] Next Page

LOWER function [String]


Converts all characters in a string to lowercase. This function is identical the LCASE function.

Syntax

LOWER( string-expression )

Parameters

string-expression    The string to be converted.

Remarks

The LCASE function is identical to the LOWER function.

See also
Standards and compatibility
Example

The following statement returns the value chocolate.

SELECT LOWER( 'chOCOLate' );