Do you really have two single quotes before isbn10, or is that just the way it was pasted in?
Thyamine
2010-04-16 18:03:59
Do you really have two single quotes before isbn10, or is that just the way it was pasted in?
Don't use single quotes around the column names. Single quotes means strings, you don't use strings for column names.
Try changing your script to this:
USE books;
INSERT INTO book (isbn10, isbn13, title, edition, author_f_name,
author_m_name, author_l_name, cond, price, genre)
VALUES ('0136061699', '978-0136061694',
'Software Engineering: Theory and Practice','4th Edition',
'Shari','Lawrence','Pfleeger','very good','50','Computing');