I'm working on some legacy SQL and the author delimited every column name and data type declaration. See the following:
CREATE TABLE SomeTable (
[SomeDate] [datetime] NOT NULL,
[SomeInt] [int] NOT NULL,
[SomeString] [nvarchar] NOT NULL
) ON [PRIMARY]
GO
Is this considered a best-practice when writing T-SQL for SQL Server? Since I'm now maintaining this code, should I continue the practice?