Can someone help me with this? When I write a query in SQL Server Management Studio 2008 or do a select top 1000 it looks like this:
SELECT TOP 1000 [COLUMN_1]
,[COLUMN_2]
,[COLUMN_3]
,[COLUMN_4]
,[COLUMN_5]
FROM [DB_NAME].[dbo].[DB_TABLE]
Yet, when you go into the Query Designer it changes your code to this:
SELECT TOP (1000) COLUMN_1, COLUMN_1 AS Expr1, COLUMN_1 AS Expr2, COLUMN_1 AS Expr3, COLUMN_1 AS Expr4
FROM DB_NAME.dbo.DB_TABLE
Is there a setting or a way to preserve the format like the top example even if you go into the Query Designer?
Thanks in advance!!!