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!!!