Options

SQLPrompt Is there a way to have the sub clause of an alter table indented?

I seem to be able to get in on the same line or two lines but not indented.

Alter Table dbo.TableName
Alter Column AColumnName varchar(12);

to

Alter Table dbo.TableName
     Alter Column AColumnName varchar(12);
Tagged:

Answers

Sign In or Register to comment.