What is the T-SQL function for converting strings into upper case in SQL Server?
UPPER
SELECT UPPER(LastName) + ', ' + FirstName AS Name FROM Person.Person
Try UPPER function:
SELECT UPPER('Hello world!!!')
Result:
HELLO WORLD!!!