need to captialise characters of a string in visual studio text editor
Is there a way I can automatically change a string to the upper version.
For example:
select * from table
would be:
SELECT * FRO开发者_如何学GoM table
After selecting both select and table and applying such a function. Typically I create the sql in a web editor, then copy paste it into my code, but have to format it a bit.
I use general settings : Control Shift U ? It's under Edit | Advanced
You might also want to into the "SQL Refactor" product offered by Red-Gate. The product will automatically layout and format your SQL queries.
精彩评论