在INSERT时请求值的MySQL NULL字段

时间:2016-08-29 11:08:30

标签: mysql mysql-error-1364

Mysql版本:5.7.x

查询:

INSERT INTO `products_manufacturer`
   SET    `website_id` = 27,
          `name` = 'YAZAKI CORP',
          `url` = 'http://www.speclocator.com/mfg_category.php?manufacturename=YAZAKI+CORP',
          `enabled` = true,
          `rectified_manufacturer_id` = NULL,
          `logo` = NULL;

错误代码: 1364.字段' facebook'没有默认值0.000秒

作为屏幕截图附加的表格结构。DESC

1 个答案:

答案 0 :(得分:0)

在插入数据后尝试以下查询

ALTER TABLE products_manufacturer MODIFY COLUMN facebook VARCHAR(255) NULL DEFAULT '0.000';