Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Lookup Table Madness

    What if we change your code to:

    CREATE TABLE Code (

    CodeID int IDENTITY(1,1)

    , CodeType int

    , Description varchar(255))

    ALTER TABLE Code ADD CONSTRAINT PK_Code PRIMARY KEY (CodeID)

    CREATE...

Viewing post 1 (of 1 total)