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
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).
INSERT INTO employee(emp_id, first_name, birth_day, sex, salary, super_id, branch_id)
VALUES(100, 'David', 'Wallace', '1967-11-17', 'M', 250000, NULL);
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
).