A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
There are several errors in what you posted. The following should work
CREATE TABLE [tblStates](
[StateID] [int] NOT NULL IDENTITY,
[State] [varchar](30) NOT NULL,
[StateAbbrv] varchar(2) NOT NULL,
CONSTRAINT PK_tblStates PRIMARY KEY CLUSTERED
(
StateID
)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Tom