Created
September 13, 2015 09:49
-
-
Save hahalin/b3b23b273335ec3dfaa7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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