SyntaxFix
Write A Post
Hire A Developer
Questions
I had this error because of using mysql/mariadb reserved words:
INSERT INTO tablename (precision) VALUE (2)
should be
INSERT INTO tablename (`precision`) VALUE (2)