"ERROR 1136 (21S01): Column count doesn't match value count at row 1"
I have no clue what it is about, googled for information, but got varying results...
This is my table;
CREATE TABLE toys (toy_id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, toy VARCHAR(20));
Query OK, 0 rows affected (0.33 sec)
INSERT INTO toys (toy_id, toy) VALUES ('', 'hula hoop', '', 'balsa glider');
ERROR 1136 (21S01): Column count doesn't match value count at row 1












