/* ------------------------------------------------------------------------- Yu Cheng ICS 321 Assignment 1 September 18, 2008 PART 3.1 Create a script that will create the SKILL table as defined in the Metadata Dictionary documentation. ------------------------------------------------------------------------- */ USE DB9975 GO CREATE TABLE SKILL ( Id INT NOT NULL, Title NVARCHAR(30) NOT NULL, Description NVARCHAR(350) NOT NULL CONSTRAINT PK_SKILL PRIMARY KEY (Id) ) GO