Oracle SQL 返回日期之内的所有记录
我希望有人能帮我解答这个问题。
以下 SQL 仅返回给定表中距当前日期 20 天的记录。
Last_Mod_Date = TO_DATE(SYSDATE - 20)
使用类似的理论有人可以帮助我确定如何返回过去 20 天范围内的所有记录吗?
谢谢!
I am hoping that somebody can help me out with this question.
The following SQL returns just the records in a given table that are specifically 20 days from current.
Last_Mod_Date = TO_DATE(SYSDATE - 20)
Using similar theory can somebody help me determine how to return all records within the past 20 days range?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将比较更改为大于或等于:
Change the comparison to greater-than-or-equal: