SQL 日期晚于原始日期超过 14 天
我需要提取一列的日期(雇用日期),但需要获取该日期之后 14 天以上的日期。.. 基本脚本是什么..
I need to pull dates for one column (hire date) but need to get dates more than 14 days after that date.. What's a basic script for that..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
oracle中的日期可以与加减运算符一起使用来加减天数。因此,如果您从另一个日期中减去一个日期以获得差异:
从“该日期”所指的问题中我并不清楚,但它是否是同一个表中的另一列、参数或其他内容完全只需根据需要在查询中替换它即可。
Dates in oracle can be used with the plus and minus operators to add and subtract days. So if you subtract one date from another to get the difference:
It is not really clear to me from the question what you are referring to by 'that date', but whether it is another column in the same table, a parameter or something else entirely just replace it in the query as needed.
试试这个:
-- 哎呀 - 那是 Sql Serrver - 对此感到抱歉!这是在 Oracle 9i 及更高版本中执行此操作的一种方法。我喜欢显式的 numtodsinterval 函数,因为很明显您正在寻找天差:
干杯,
丹尼尔
Try this:
-- Oops - that was Sql Serrver - sorry about that! Here is one way to do it in Oracle 9i and up. I like the explicit numtodsinterval function since it is very clear that you are lokoing for Days difference:
Cheers,
Daniel