mysql null 相关bug

select 1 = null

并不是预期的 False 而是 Null

select 1 is null;

这样才会产生预期的 False

select 1 not is null

这样写是 错误
正确写法:

select 1 is not null;
原文地址:https://www.cnblogs.com/jijizhazha/p/9556852.html