SQL-Book List DB Challenge
I haven't been able to figure out what my syntax error is. I'm missing something simple!
"There's a Syntax error near Gary"
/** Booklist:
Beach Music Pat Conroy (4)
The Road Less Traveled M. Scott Peck (2)
First In Gary Schroen (9)
^^/
CREATE TABLE Booklist (Id INTEGER PRIMARY KEY, BookName TEXT, Author TEXT, Aisle INTEGER );
INSERT INTO Booklist VALUES (1, "Beach Music", "Pat Conroy", 4);
INSERT INTO Booklist VALUES (2, "The Road Less Traveled", "M. Scott Peck", 2);
INSERT INTO Booklist VALUES (3, "First In”, "Gary Schroen", 9);
Please sign in to leave a comment.