改为 where id IS NULL 即可MySQL里面不能用等号判断NULL。
where id IS NULL
详见:https://dev.mysql.com/doc/ref...
where id is null
一般更新语句,保险起见,先验证下数据量及确认下更新内容
#update defaultdemo #set id = 19 select id from defaultdemo where id is null;
改为
where id IS NULL
即可MySQL里面不能用等号判断NULL。
详见:
https://dev.mysql.com/doc/ref...
where id is null
一般更新语句,保险起见,先验证下数据量及确认下更新内容