Mysql
 sql >> Database >  >> RDS >> Mysql

Errore di sintassi SQL 1064

Non utilizzare virgolette singole attorno ai nomi delle colonne. Le virgolette singole indicano le stringhe, non usi le stringhe per i nomi delle colonne.

Prova a cambiare il tuo script in questo:

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');