SQLSTATE [23000]:违反完整性约束:1048列>'category_description'不能为空(SQL:插入到'tbl_category`(`category_id`,`category_name`,`category_description`,`publication_status`)>值(, sdfsf,,1))
答案 0 :(得分:1)
您的category_description
不能为null,将该列更新为"Allow NULL"
或为该列分配值。
答案 1 :(得分:0)
您的插入查询显示您没有传递必需的值,即
insert into `tbl_category` (`category_id`, `category_name`, `category_description`, `publication_status`) >values (, sdfsf, , 1)
在该列的数据库中为category_description
分配一个值或将默认值更改为'NULL'。