Syntax

CREATE TABLE Employees (
Id int NOT NULL,
PRIMARY KEY (Id),
...

);

Id int NOT NULL PRIMARY KEY,
...

);