📅  最后修改于: 2022-03-11 15:05:10.184000             🧑  作者: Mango
In your database table not null columns created are less than the values that
you are passing in the insert query
Example : Assume Your database table has 35 columns
Then,
Where as the values you are passing are 34 columns
This mismatch of columns is giving you the error.
You must have forgot to pass the value for not null column. once you pass
it error will be resolved