Skip to content

Instantly share code, notes, and snippets.

@hahalin
Created September 13, 2015 09:49
Show Gist options
  • Select an option

  • Save hahalin/b3b23b273335ec3dfaa7 to your computer and use it in GitHub Desktop.

Select an option

Save hahalin/b3b23b273335ec3dfaa7 to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[category](
[id] [int] NOT NULL,
[cname] [varchar](20) NULL,
PRIMARY KEY CLUSTERED
(
[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment