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

SQL Anywhere 10.0.1 » UltraLite - Database Management and Reference » UltraLite SQL Function Reference » Alphabetical list of functions

ISNULL function [Miscellaneous] Next Page

LCASE function [String]


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

Syntax

LCASE( string-expression )

Parameters

string-expression    The string to be converted to lowercase.

See also
Remarks

The LCASE function is similar to the LOWER function.

Standards and compatibility
Example

The following statement returns the value chocolate.

SELECT LCASE( 'ChoCOlatE' );