LOWER(<StringExpression>)
<StringExpression> =
Type of:
CHARACTER|CHAR
CHARACTER VARYING|VARCHAR
GUID
CHARACTER LARGE OBJECT|CLOB
Returns
Same as input
UsageThe LOWER function converts all characters in a string value to lower-case. The collation of the input value is used to determine how the lower-case operation is performed.
Examples
SELECT LOWER(CustomerID) AS CustomerID
FROM Customers
SQL 2003 Standard DeviationsThis function deviates from the SQL 2003 standard in the following ways:
Deviation
Details
Argument Separator
The use of a comma separator for the function arguments is an ElevateDB extension.