"Folding" queries
It would be interesting to be able to "fold" and "unfold" a query from a single line state (still showing the full query) to a multiline, formatted state.
The following query, for example,
| |
|+| SELECT * FROM SomeTable WHERE SomeField = 3.14;
| |
would unfold to
| |
|- | SELECT
| | *
| | FROM
| | SomeTable
| | WHERE
| | SomeValue = 3.14;
| |
and back.
28
votes
Tino
shared this idea
-
Sduval commented
Check out SSMS Boost, I use it in tandem with SQL complete and the two apps together have really made stock SSMS so much better