CREATE TABLE publishers
(
PublisherName varchar(75),
City varchar(35),
PublisherState char(2),
Country varchar(4)
)
GO
-- modify publishers so that state must be two letters
ALTER TABLE publishers
ALTER COLUMN publisherstate char(2) CHECK (publisherstate LIKE '[A-Za-z][A-Za-z]')