小弟最近查Oracel数据库时遇到点问题,希望热心网友能指点下我
问题如下!
有表A和表B,两张表都只有字段名:name,没有主键,表A数据10万,表B数据12万。现查询表A中有多少个name和表B的name一样,有多少不一样,SQL如下
--查询name相同个数,记SQL1
select count(*) from(
select distinct name from A
where A.name in (select distinct B.name from B))
--查询name不同个数,记SQL2
select count(*) from(
select distinct name from A
where A.name not in (select distinct B.name from B))
执行以上两条sql,发现SQL1查询总数8万,但是SQL2查询总数是0条记录(SQL2按理说是4万条记录才对呀)
--SQL2改写,记SQL3
select count(*)
(select distinct C.name from A C
where C.name not int
( select distinct name from A
where A.name in (select distinct B.name from B))
执行SQL3,这样查询结果是4万条记录,请问各位,为什么执行SQL2返回的是0条记录呀?