试图使用这两个命令,但两个都不起作用:
update planes set year = 2013 where year is null;
和
update planes set year = 2013 where year = null;
飞机-表格名称
最佳答案
您可以取消设置安全模式
SET SQL_SAFE_UPDATES = 0;
然后运行查询
关于mysql - 如何更新字段为空值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42368984/