What is the T-SQL function for converting strings into upper case in SQL Server?
Asked
Active
Viewed 9.0k times
2 Answers
56
SELECT UPPER(LastName) + ', ' + FirstName AS Name
FROM Person.Person

Mitch Wheat
- 295,962
- 43
- 465
- 541
16
Try UPPER
function:
SELECT UPPER('Hello world!!!')
Result:
HELLO WORLD!!!

Prashant Pimpale
- 10,349
- 9
- 44
- 84

simplyaarti
- 253
- 4
- 8