The number of columns specified in an insert must match the number of values specified.
Bad:
insert SomeTable (Name, Value)
values ('abc', 42, 'def')
Good:
insert SomeTable (Name, Value, Description)
values ('abc', 42, 'def')
The number of columns specified in an insert must match the number of values specified.
Bad:
insert SomeTable (Name, Value)
values ('abc', 42, 'def')
Good:
insert SomeTable (Name, Value, Description)
values ('abc', 42, 'def')