Scalar. Returns a given string with all characters converted to upper case.
The following example uses the UPPER function to convert the value of StockName to all upper-case characters:
INSERT INTO OutStream SELECT UPPER(Trades.StockName) FROM Trades;