Column name or number of supplied values does not match table definition.
You're getting this error because the number or name of the columns you're trying to insert data into doesn't match the table definition.
Could you please post your INSERT statement as well? Cause I tested on my side with below code and worked fine.
insert into EMP(Name)
values ('aaaa'),('ccc'),('fff'),('eee')
Best regards,
Cosmog Hong
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our Documentation to enable e-mail notifications if you want to receive the related email notification for this thread.