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

SQL Anywhere 11.0.1 (Français) » UltraLite - Database Management and Reference » UltraLite SQL Reference » UltraLite SQL functions » SQL functions (E-O)

 

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.

Returns

CHAR

NCHAR

LONG VARCHAR

VARCHAR

NVARCHAR

Remarks

The LCASE function is identical to the LOWER function.

See also
Standards and compatibility
  • SQL/2003   Core feature.

Example

The following statement returns the value chocolate.

SELECT LOWER( 'chOCOLate' );