浏览 1377 次
锁定老帖子 主题:关于历史表使用trunc的问题
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2012-04-06
最近改一个BUG,需要根据时间区间进行查询,但是反应查询时间特别长,
select * from A t, B mbf, C m where t.firmId = mbf.firmId and mbf.brokerId = m.brokerId and trunc(cleardate ) <= to_Date('20120312','yyyymmdd') and trunc(cleardate ) >= to_Date('20110101','yyyymmdd')
数据量
select count(*) from A --105824591 select count(*) from B --19993 select count(*) from C --650
select * from A t, B mbf, C m where t.firmId = mbf.firmId and mbf.brokerId = m.brokerId and cleardate <= to_Date('20120312','yyyymmdd') and cleardate >= to_Date('20110101','yyyymmdd' 带TRUNC执行时间稳定在12S,不带TRunc执行时间稳定在1-2S
总结:对于历史表的归档,如果不是对时间要求很严格,可以将时间设置成年月日的形式,提高查询效率。
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |