MySQL不同于

前端之家收集整理的这篇文章主要介绍了MySQL不同于前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我怎样才能做到这一点

select * from theuser where userid=1233 and active != 1

用正确的MysqL语法?

active可以是NULL,0或1,我需要的是活动等于NULL或0,永远不等于1.

最佳答案
select * from theuser where userid=1233 and (active is null or active != 1)
原文链接:https://www.f2er.com/mysql/433731.html

猜你在找的MySQL相关文章