Convert strings to UPPERCASE in SQL Server

user688609 picture user688609 · Apr 2, 2011 · Viewed 89.2k times · Source

What is the T-SQL function for converting strings into upper case in SQL Server?

Answer

Mitch Wheat picture Mitch Wheat · Apr 2, 2011

UPPER

SELECT UPPER(LastName) + ', ' + FirstName AS Name
FROM Person.Person