I have this code:
SELECT MyId = ROW_NUMBER() OVER (ORDER BY ( SELECT 1))
FROM table
formatting changes this to the following:
SELECT MyId = ROW_NUMBER() OVER (ORDER BY
(
SELECT
1
)
)
FROM table
In General setting I have margin set to 250.
As you can see a simple one-liner pretty damages readability and looks very strange.
Thanks
