Some of use use (and support) an alternate CREATE VIEW syntax:
CREATE VIEW [dbo].[MyView]
(
ColumnOne,
ColumnTwo,
ColumnThree
)
AS
SELECT a, b, c FROM [dbo].[MyTable];
After formatting with SQL Prompt 8.0.1.1383, this is rendered as:
CREATE VIEW [dbo].[MyView] (ColumnOne,ColumnTwo,ColumnThree)
AS
SELECT a,
b,
c
FROM [dbo].[MyTable];
The formatting of the SELECT is as desired, but the reformatting of the CREATE VIEW is not desirable and I haven't found where to control this.
Is this supported?
Thanks all.
After formatting with SQL Prompt 8.0.1.1383, this is rendered as:
The formatting of the SELECT is as desired, but the reformatting of the CREATE VIEW is not desirable and I haven't found where to control this.
Is this supported?
Thanks all.