I am trying to write this SQL code in Microsoft SQL Server Management Studio:
create table Countries
(
Id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
Name VARCHAR(50) NOT NULL
);
and the problem is that I get this error on the comma:
Incorrect syntax near ','. Expecting ID, QUOTED_ID, STRING or TEXT_LEX.
and error in the 50:
Incorrect syntax near '50'. Expecting '(', or Select.
Just saying that I am beginner and I am not sure what is the error.