4>5> CREATE TABLE MyTable (6> MyID Int IDENTITY(1, 1) NOT NULL7> , MyDescription nVarChar(50) NOT NULL)8> GO1>2> drop table MyTable;3> GO1>The actual syntax for the IDENTITY property is as follows:IDENTITY [ (seed , increment ) ]4>