


i dont understand what the syntax error is ?
Please refer to the Mysql documentation: https://dev.mysql.com/doc/refman/8.0/en/insert.html
The syntax of your insert query is incorrect.
You have insert into table SOMETABLE(column1, column2,...
This must be like insert into SOMETABLE (column1, column2...) VALUES (...