说明: 1 在 oracle 中查询数据 2 a,b,c 三个表关联,查询表 a 的 jiesuanje 的和 3 a 与 b 关联,b 与 c 关联,通过表 c 的日期字段 shoufeirq 过滤;和表 a 的 hesuanxm 字段过滤
sql 语句如下:
select sum(a.jiesuanje)
from a, b,c
where a.yijiid = b.yijiid and b.shoufeiid=c.shoufeiid
and a.hesuanxm<>'29'
and c.shoufeirq between to_date('2017-07-01 00:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2017-07-30 23:59:59','yyyy-mm-dd hh24:mi:ss')
以上 sql 语句执行了 10s 左右, 执行计划如下