When I start with the following code:
;WITH a AS
(
SELECT
1 AS x
,2 AS y
)
SELECT * INTO #tmp FROM a
and apply formatting:
;WITH a AS
(
SELECT
1 AS x
,2 AS y
)
SELECT
a.x
,a.y INTO #tmp
FROM a
The "INTO #tmp" value is left hanging out after the last column, instead of being aligned with the SELECT and FROM
Expected result:
;WITH a AS
(
SELECT
1 AS x
,2 AS y
)
SELECT
a.x
,a.y
INTO #tmp
FROM a
and apply formatting:
The "INTO #tmp" value is left hanging out after the last column, instead of being aligned with the SELECT and FROM
Expected result: