Forum Replies Created

Viewing post 16 (of 16 total)

  • RE: INSERT INTO, EXCLUDING ONE COLUMN

    Another solution is to create a view of your table without the identity column

    CREATE TABLE TEST(

    CODE_test int IDENTITY(1,1) NOT NULL,

    shortname varchar(14) NULL,

    Name] varchar(38) NOT NULL,

    CONSTRAINT [PK_TEST] PRIMARY KEY (CODE_test)

    )...

Viewing post 16 (of 16 total)