1
希望這是一個新手問題。SQL Server 2008/2012 - 視圖和sql格式
因此,如果我在我的SQL和我的where子句中有幾個子選擇,我不太滿意視圖設計器中的格式,這似乎是唯一的在保存後顯示/顯示我的意見的方式。
總之,有什麼方法可以直接編輯SSMS中的視圖,並讓視圖在我的代碼中保留格式?
即;
select case /*comment */
when a = 5
then b = 2
else b = 4 /* why b 4 */
end as field_1,
dt as field_2,...
獲取的所有搗碎
select case /*comment */ when a = 5
then b = 2 else b = 4 /* why b 4 */
end as field_1,
dt as field_2,...
或者類似的規定。
右擊 - >腳本視圖爲 - >改爲 - >新的查詢窗口。 –
http://sqlblog.com/blogs/aaron_bertrand/archive/2009/10/14/bad-habits-to-kick-using-the-visual-designers.aspx –