Ich versuche, die folgende Abfrage im MS-SQL-Manager auszuführen, aber ich erhalte ständig Syntaxfehler.
Msg 102, Level 15, State 1, Line 8
Incorrect syntax near ' '.
INSERT INTO dbo.Survey
(
Title,
Active,
StartDate,
EndDate
)
VALUES
(
'Title test',
'1',
null,
null
);
// Table
SurveyId (primaryId)
Title (varchar)
Active (bit)
StartDate (datetime)(nullable)
EndDate (datetime)(nullable)