📜  插入值列表与列列表不匹配:1136 列计数与第 2 行的值计数不匹配” - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:10.184000             🧑  作者: Mango

代码示例1
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