SQL Complete - undesired output formatting ranking functions
Posted: Thu 24 Jan 2013 22:47
Hi,
Was searching for something related to this on forum and could not find anything.
currently if I format the following code
Using version 4.0.61
I get this output
but the desired output is
Is there any combination of settings that will format the above, or is this something that has been overlooked and will need to be addressed?
Thanks
Was searching for something related to this on forum and could not find anything.
currently if I format the following code
Using version 4.0.61
Code: Select all
select
row_number() over (order by cl.f1
, cl.f2
)
- 1 as f2
,cl.f3
,cl.f4
from #clients cl
I get this output
Code: Select all
select row_number() over (order by cl.f1
, cl.f2
)
- 1 as f2
,cl.f3
,cl.f4
from #clients cl
Code: Select all
select row_number() over (order by cl.f1
,cl.f2
)
- 1 as f2
,cl.f3
,cl.f4
from #clients cl
Is there any combination of settings that will format the above, or is this something that has been overlooked and will need to be addressed?
Thanks