Oracle:如何从昨天只选择记录? [英] Oracle: How can I select records ONLY from yesterday?

查看:188
本文介绍了Oracle:如何从昨天只选择记录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我花了几个小时在网上搜寻这个问题的答案...

I've spent hours searching the web for an answer to this question...

这里是我目前有的:

select  *
from    order_header oh
where   tran_date = sysdate-1

提前感谢。

推荐答案

使用:

AND oh.tran_date BETWEEN TRUNC(SYSDATE - 1) AND TRUNC(SYSDATE) - 1/86400

参考: TRUNC

tran_date 上调用函数意味着优化器将无法使用索引存在)。一些数据库(如Oracle)支持基于函数的索引,这些索引允许对数据执行功能,以最大限度地减少这种情况下的影响,但IME DBA不允许这些。我同意 - 在这种情况下,他们不是真正必要的。

Calling a function on the tran_date means the optimizer won't be able to use an index (assuming one exists) associated with it. Some databases, such as Oracle, support function based indexes which allow for performing functions on the data to minimize impact in such situations, but IME DBAs won't allow these. And I agree - they aren't really necessary in this instance.

这篇关于Oracle:如何从昨天只选择记录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆