I am trying to enter information into my table named Food_Log.
INSERT INTO Food_Log (Person, Food, ServingSize, Date, Meal); VALUES (John,\'Cheerios\',2,\'
Remove the ; before VALUES
;
VALUES
INSERT INTO Food_Log (Person, Food, ServingSize, Date, Meal) VALUES ('John','Cheerios',2,'2014-04-01','Breakfast');
And date format is normally YYYY-MM-DD. And you forgot the quotes around John
YYYY-MM-DD
John