What am I missing to make this work? When I enter this:
PHP Code:
INSERT INTO Comics (ComicNumber, ComicName, ComicTitle, ComicDate, AuthorId)
VAULES ('875', 'Detective Comics', 'Lost Boys', '2011-05-01', 1)
I get this:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VAULES ('875', 'Detective Comics', 'Lost Boys', '2011-05-01', 1)' at line 2
INSERT INTO Comics( ComicNumber, ComicName, ComicTitle, ComicDate, AuthorId )
VAULES('875', 'Detective Comics', 'Lost Boys', '2011-05-01', 1)
Thx in advance!
Bookmarks