Scalar. Returns a given string with all characters converted to lower case.
Return
string
String
The following example uses the LOWER function to convert a stock name to all lowercase characters.
INSERT INTO OutStream SELECT LOWER(Trades.StockName) FROM Trades;