Returns a specified character expression in lowercase letters.
LOWER(cExpression) |
Parameters
- cExpression
- Specifies the character expression LOWER(В ) converts.
Return Value
Character
Remarks
LOWER( ) converts all uppercase letters (A – Z) in the character expression to lowercase (a – z). All other characters in the character expression remain unchanged.
Example
В | Copy Code |
---|---|
STORE 'FOX' TO gcName CLEAR ? LOWER(gcName) && Displays fox |