Insert formatting
Posted: Wed 08 Aug 2012 10:33
Is there way to format INSERT statement like it is in a snippet (after pressing TAB)?
I can't figure out how to make it. After formatting document it always became something like this.
Code: Select all
INSERT INTO SomeTable
(
Something
, Anything
, Etc
, Data
)
...
Code: Select all
INSERT INTO SomeTable(Something
, Anything
, Etc
, Data)
...