I am using various websites to check my SQL syntax.
https://www.eversql.com/sql-syntax-check-validator/
https://www.piliapp.com/mysql-syntax-check/
INSERT INTO Table1 (Column1, Column2)
VALUES ('bbbbbbb', 'aaa');
INSERT INTO Table2 (Column1, Column2, Column3)
VALUES ('bbbbb', 'hhhh', 'eeee');
While the SQL works on my end, it is showing an error on the validator sites. What is the best explanation for this?
You have an error in your SQL syntax; it seems the error is around: 'INSERT `INTO Table2 (Column1, Column2, Column3) VALUES ('bbbbb', 'hhhh', 'eee' at line 5
`character before theINTOkeyword:INSERT INTOnotINSERT `INTO