当前位置: 代码迷 >> Oracle管理 >> 多个count查询有关问题
  详细解决方案

多个count查询有关问题

热度:11   发布时间:2016-04-24 04:59:49.0
多个count查询问题
分开查询时可以的

select count(*) as '总委托数'
from a
where a.date1 >= '20100101' and a.date1 <= '20100831'

select count(date2) as '总成交数'
from b
where b.date2 >= '20100101' and b.date2 <= '20100831'

我想联合查询,就出现问题,如何解决

select count(*) as '总委托数',count(date2) as '总成交数'
from a,b
where a.date1 >= '20100101' and a.date1 <= '20100831'and
b.date2 >= '20100101' and b.date2 <= '20100831'
  相关解决方案