You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Category.sql 213B

123456
  1. CREATE TABLE [dbo].[Category] (
  2. [CategoryID] INT IDENTITY (1, 1) NOT NULL,
  3. [CategoryName] NVARCHAR (64) NOT NULL,
  4. CONSTRAINT [PK_Categories] PRIMARY KEY CLUSTERED ([CategoryID] ASC)
  5. );