ASA SQL Reference
SQL Functions
Alphabetical list of functions
Converts all characters in a string to lower case.
LCASE ( string-expression )
string-expression The string to be converted to lower case.
SQL/92 Vendor extension.
SQL/99 Vendor extension.
Sybase LCASE is not supported in Adaptive Server Enterprise; you can use LOWER to get the same functionality.
The following statement returns the value lower case.
SELECT LCASE( 'LOWER CasE' )