when ever i do an insert i first define which fields the data is going to be written to. Like this...
Code:
INSERT INTO country (id, country) VALUES (1, 'AE');
INSERT INTO country (id, country) VALUES (2, 'AF');
INSERT INTO country (id, country) VALUES (3, 'AG');
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '; INSERT INTO country (id, country) VALUES (6, 'AL')' at line 1