mysql查询空值和null遇到的一个很奇怪问题,牛人帮忙看下有啥区别?

select*frompersonwheregroupid=10andimgpath=''orimgpathisnull;select*frompersonwheregr... select * from person where groupid=10 and imgpath='' or imgpath is null;

select * from person where groupid=10 and imgpath is or nullimgpath='';

第一条grouup=10没有起作用,查询的结果超出了grouup=10的范围
第二条语句就正常了.
展开
 我来答
幻形术
2018-06-29 · TA获得超过1261个赞
知道小有建树答主
回答量:994
采纳率:81%
帮助的人:263万
展开全部
并不奇怪,and的优先级比or高,语言加小括号。
第二句是对的语句么???
追问
不好意思第二个写错了, 这样执行是我想要的结果.
select * from person where groupid=10 and imgpath is null or imgpath='';
追答

and的优先级比or高,明白了么?

自己比较吧。

select * from person where (groupid=10 and imgpath='') or imgpath is null;

select * from person where (groupid=10 and imgpath is null) or imgpath='';

正确的是:

select * from person where groupid=10 and (imgpath='' or imgpath is null);
select * from person where groupid=10 and (imgpath is null or imgpath='');
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式