Popular Posts

SQLblog.com - The SQL Server blog spot on the web

Wednesday, October 11, 2017

query format

SQLServerCentral » Latest topics
query format
[code language="sql"]CREATE TABLE [dbo].[Title](  [ID] [int] NULL,
  [Description] [varchar](50) NULL
) ON [PRIMARY]

INSERT INTO [dbo].[Title]([ID],[Description])
VALUES(1,'Architect'

No comments: