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