UPPER: Translates all characters within the string to upper case
1> -- UPPER: Translates all characters within the string to upper case.
2>
3> DECLARE @UPPER_STRING char(100)
4> SET @UPPER_STRING = "www.Java2s.com"
5>
6> SELECT UPPER(@UPPER_STRING)
7> GO