INSERT INTO FoodLog
(Person,Food,ServingSize,Date,Meal)
VALUES
('John','Cheerios',2,'1-APR-2014','Breakfast')
('John','TBoneSteak',1,'2-APR-2014','Lunch')
In this code, the first line of code works just fine, but when I type up the second line of code with the same person name, it doesn't accept it.
This is the error that I receive:
Msg 102, Level 15, State 1, Line 5
Incorrect syntax near 'John'.