Convert query letters to uppercase using Management Studio

ssms

Solution

Select all of your query. Then go to Edit > Advanced > Make Uppercase or simply hit `Ctrl+Shift+U` to make the query uppercase. Please note that it will make everything uppercase. (i.e., table names, fields name, strings etc.)

EDIT: If you are able to install add-ins, you can also use SSMS Tools Packs to uppercase only the keywords.

Problem

Can I convert query syntax to uppercase using SQL Server Management Studio? I have a bunch of queries that are all written in lowercase letters, and I want to convert them all to uppercase letters. I'm looking for a built-in editor functionality.

Original source