Skip to content
Advertisement

What does the MySQL mean by “Column count doesn’t match value count at row 1”

This is the message I’m getting

ER_WRONG_VALUE_COUNT_ON_ROW: Column count doesn’t match value count at row 1

This is my whole code. Where is my mistake?

Advertisement

Answer

Your employee table has 7 columns, but you are giving 8 values for insert, which generates the error message that you are getting.

A good habit is to list the columns for insert in the statement. This makes this type of error much easier to spot, since you don’t need to look back at the definition of the table (it also prevents your query from failing if you ever add new columns to the table at some point in the future – or drop existing columns).

Side note: unquoted identifier first-name, that can be seen in the create table statement for employee, is not valid – because it contains a dash (-). I assume that’s a typo and you meant an underscore instead (first_name).

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement