UPPER (Transact-SQL)
SQL Server 2012
Returns a character expression with lowercase character data converted to uppercase.
The following example uses the UPPER and RTRIM functions to return the last name of people in the Person table so that is in uppercase, trimmed, and concatenated with the first name.
USE AdventureWorks2012; GO SELECT UPPER(RTRIM(LastName)) + ', ' + FirstName AS Name FROM Person.Person ORDER BY LastName; GO
