formatting values
torsten.strauss
Posts: 271 Silver 3
Hi!
Seems it is impossible to allign the first value in the values clause to the second value.
Would be nice to fix it - thanks!
Seems it is impossible to allign the first value in the values clause to the second value.
Would be nice to fix it - thanks!
DROP TABLE IF EXISTS RowOffsetArray; GO CREATE TABLE dbo.RowOffsetArray (col1 int NOT NULL); GO -- Insert 20 records INSERT dbo.RowOffsetArray ( col1 ) VALUES (4) , (12) , (6); GO
Comments
Our formatting system aligns the first value clause to the second value by default:
Could you confirm that you are using our new beta formatting system?
In the new beta formatting system, we tried to align the first value in the values clause to the second value and it doesn't seem to be possible.
We will add this to our formatting backlog of items to consider before releasing the full version.
Thanks,
Michael
Technical Lead, SQL Monitor
We have added this to our backlog - reference SP-6070.
Thanks,
Michael
Technical Lead, SQL Monitor
thanks for looking into this!
Yes, I use the latest beta version.
Torsten