Error 1136 Column count doesn't match value count
If you get this error:
Error #1136- Column count doesn't match value count
It means that there is a mismatch between the number of columns in your INSERT query and the number of values that you are writing:
INSERT INTO `table`
(`column1`, `column2`)
VALUES
('field1')
Note that you can also get this error by omitting a comma:
INSERT INTO `table`
(column1, column2)
VALUES
('field1' 'field2')