Heim > Fragen und Antworten > Hauptteil
三叔2017-06-26 10:51:26
改为 where id IS NULL
即可
MySQL里面不能用等号判断NULL。
详见:
https://dev.mysql.com/doc/ref...
代言2017-06-26 10:51:26
一般更新语句,保险起见,先验证下数据量及确认下更新内容
#update defaultdemo
#set id = 19
select id
from defaultdemo
where id is null;