Before the comma

SELECT [Column1]
  ,[Column2]
  ,[Column3]
  ,[Column4]
FROM [Table1]

I am not a fan of the way Microsoft SQL Server Management Studio for SQL2005 generates scripts. Look at how they put the comma on the next line rather than at the end of the preceding line. Everytime I generate a script I change it to:

SELECT [Column1],
  [Column2],
  [Column3],
  [Column4]
FROM [Table1]

Anybody got any idea why they chose this strange format?

Viewing 7 Comments

 

Trackbacks

(Trackback URL)

close Reblog this comment
blog comments powered by Disqus