Do you place separators (commas, and, or operators) at the front of the line?
Select Field1
, Field2
--, Field3
From [some_table] as ST
Inner Join [other_table] as OT
ON ST.PKID = OT.FKID
Where [this] = [that]
and [one_other] > 53;
I think the best feature is to help expose important operators (AND/OR). As a secondary advantage it seems easier to comment out.
Not sure where I picked it up initially, but Andrew Novick mentions it in "Transact-SQL User-Defined Function" (Heard him speak; got the book for free and highly recommend.)