select (select count(*) from 来货单) - (select count(*) from 来货单明细)
from dual
------解决方案-------------------- 表结构 一样的话 ,minus 下就可以了。
select * from a minus select * from b ; ------解决方案-------------------- dual 是一张伪表.是一张只有一个字段,一行记录的表
select 'aa' c1 from dual
c1
-----------------
1 aa
另外 是要查询2个表的全部数量 还是查询 有对应的数量?
------解决方案-------------------- select count(*) ls3 a ,ls4 b where a.id=b.id ------解决方案--------------------
这个可以吧。
或者 select distinct 来货单号 from 来货单 minus select distinct 来货单号 from 来货单明细
可否?