The statementCREATE TABLE ValueTable ([value] int;)from the examples is incorrect. The semicolon is not allowed by SQL Server. The correct statement should be:CREATE TABLE ValueTable ([value] int)
↧