SQLSTATE [23000]:完整性约束违规:1048列'customer_id'不能为空(SQL:插入invoices
(invoice_no
,supplier_id
,customer_id
,{ {1}},payment_id
,issue_date
,due_date
,total
,gst_type
,gst
,grandtotal
,{{1 },amt_owed
)值(XCZ-INV,1,1 ,,,,,,, 2017-11-29 18:44:19,2017-11-29 18:44:19))
答案 0 :(得分:0)
您不会将任何costumer_id发送到您的数据库。但是在您的数据库中,您说costumer_id不能为null。您需要将其更改为" NULL"
使用它,它应该有用;
UPDATE invoices SET costumer_id = NULL