INSERT statement formatting
We need extra control of the formatting of various statements, e.g INSERTs. We like to have our INSERT statements formatted like:
INSERT INTO dbo.Test
(
UserID
, Name
, IsDeleted
)
VALUES
(
0 -- UserID - INT NOT NULL
, '' -- Name - VARCHAR(32) NOT NULL
, DEFAULT -- IsDeleted - BIT NOT NULL
)
but we can't even get it close
4
votes
Greg Bacchus
shared this idea
-
Greg Bacchus commented
Oops, this forum doesn't display indenting! It is supposed to be 1 tab indent for each line between the brackets