I keep getting this error for this very simple insert:
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near ','.
INSERT INTO dbo.Players (ID_Player, Last_Name, First_Name, Position )
VALUES
(039, 'Astacio ' , 'Pedro' , ' P ' ),
(040, 'Atchison' , 'Scott' , ' P ' ),
(041, 'Ayala' , 'Benny' , ' OF' );
GO
What is wrong?