>데이터 베이스 >MySQL 튜토리얼 >表里存在NULL值导致not in子查询失效的问题

表里存在NULL值导致not in子查询失效的问题

WBOY
WBOY원래의
2016-06-07 14:53:461323검색

表里存在NULL值导致not in子查询失效的问题 --这是我第一次给业务写的SQL语句,查询来数据为0,当时没考虑太多就发出去了。 后业务给我看了几条测试数据,我发现确实查询结果不对。br--再看语句逻辑确实没错,后经过排查是BB里有几行cust_id为NULL导致not in


表里存在NULL值导致not in子查询失效的问题

 

--这是我第一次给业务写的SQL语句,查询来数据为0,当时没考虑太多就发出去了。 后业务给我看了几条测试数据,我发现确实查询结果不对。
--再看语句逻辑确实没错,后经过排查是BB里有几行cust_id为NULL导致not in 查询结果失效。  www.2cto.com  

 


--改良前的语句
select * from AA a with(nolock)
where a.status_code='04'

and a.issue_date>='2012-01-01' and a.issue_date

and LEFT(a.manorg_code,4)='8640'

and a.cust_id not in

(

    select aa.cust_id from BB aa  with(nolock) where aa.sheet_type='Q' and aa.acttype_code in ('01','02','16','19')

)

 

--改良后的语句

 

select * from AA a with(nolock)

where a.status_code='04'

and a.issue_date>='2012-01-01' and a.issue_date

and LEFT(a.manorg_code,4)='8640'

and a.cust_id not in

(

select ISNULL(aa.cust_id,'') from BB aa with(nolock) where aa.sheet_type='Q' and aa.acttype_code in ('01','02','16','19')

)

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.