Stacked columns are not fully stacked

Discussion of open issues, suggestions and bugs regarding database management and development tools for SQL Server
Post Reply
sov
Posts: 16
Joined: Tue 26 Mar 2013 07:05

Stacked columns are not fully stacked

Post by sov » Tue 26 Mar 2013 07:22

Hi, is it possible to get a query like:

Code: Select all

select
    ColumnWithALargeColumnName = 'dummy'
  , Col =                        case
             when T.Value = 1
             then 'True'
             else 'False'
         end
from Dummy.[Table] as T
aligned like this:

Code: Select all

select
    ColumnWithALargeColumnName = 'dummy'
  , Col                        = case
                                     when T.Value = 1
                                     then 'True'
                                     else 'False'
                                 end
from Dummy.[Table] as T
Thanks! Stefan

alexa

Re: Stacked columns are not fully stacked

Post by alexa » Tue 26 Mar 2013 11:15

This is not possible in dbForge SQL Complete. However, you can add a suggestion on our UserVoice forum where other users can vote for it: http://devart.uservoice.com/forums/87893-sql-complete

We collect and analyze the information from this forum in order to make a proper roadmap for future product releases.

Post Reply