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的范围
第二条语句就正常了. 展开
select * from person where groupid=10 and imgpath is or nullimgpath='';
第一条grouup=10没有起作用,查询的结果超出了grouup=10的范围
第二条语句就正常了. 展开
1个回答
展开全部
并不奇怪,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='');
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询