Não use aspas simples nos nomes das colunas. Aspas simples significam strings, você não usa strings para nomes de colunas.
Tente alterar seu script para isso:
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');