我怎样才能只选择昨天的记录? [英] How can I select records ONLY from yesterday?

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

问题描述

我已经花了数小时在网上搜索该问题的答案...

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.

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

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