I am trying to enter information into a table called Food_Log.
INSERT INTO Food_Log
(Person, Food, ServingSize, Date, Meal);
VALUES
(John,'Cheerios',2,'1-APR-2014','Breakfast');
Because of this entry, the following error occurs.
Msg 102, level 15, state 1, line 2
Invalid syntax next to ';'.
Not sure what to do to get around this.
source
share