Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Server中用于将字符串转换为大写的T-SQL函数是什么?
上
SELECT UPPER(LastName) + ', ' + FirstName AS Name FROM Person.Person
试用UPPER功能:
UPPER
SELECT UPPER('Hello world!!!')
结果:
HELLO WORLD!!!