The function LCASE converts the character string into lower case
letters.
SQL Syntax:
|
|
LCASE( expression ) |
Parameters:
|
|
expression
Any string expression.
|
Escape Syntax:
|
|
{fn LCASE( expression ) } |
Return Type:
|
|
A
character string data type in dependence of the expression. |
Examples:
SELECT LCASE( 'Abc' ), {fn LCASE('QWERT')}
Return Values: abc, qwert
see also:
SQL String Functions
UCASE
|