Oracle查询,and与or理解有误

select count(*)
from
t_bill_err_pay_order t
where t.settle_date_cp=to_date('2018-07-03','yyyy-mm-dd') 

and t.check_status is null or t.check_status = 0



本来t_bill_err_pay_order表没来2018-07-03号的数据,但是我理解的这样一来整个查询结果应该是没数据的,但是奇怪的是查询结果有数据,问题出在t.check_status = 0 前面的or上,如果是这样的话,那相当于t.settle_date_cp=to_date('2018-07-03','yyyy-mm-dd') or  t.check_status = 0, t.check_status is null or t.check_status = 0 or(t.settle_date_cp=to_date('2018-07-03','yyyy-mm-dd') or  t.check_status = 0, t.check_status is null or t.check_status = 0 )

猜你喜欢

转载自blog.csdn.net/dinghuan2011/article/details/80923913
今日推荐