SQL 日期晚于原始日期超过 14 天

发布于 2024-10-21 02:09:33 字数 57 浏览 1 评论 0原文

我需要提取一列的日期(雇用日期),但需要获取该日期之后 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泼猴你往哪里跑 2024-10-28 02:09:33

oracle中的日期可以与加减运算符一起使用来加减天数。因此,如果您从另一个日期中减去一个日期以获得差异:

select * from table
where otherdate - hiredate > 14

从“该日期”所指的问题中我并不清楚,但它是否是同一个表中的另一列、参数或其他内容完全只需根据需要在查询中替换它即可。

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:

select * from table
where otherdate - hiredate > 14

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.

楠木可依 2024-10-28 02:09:33

试试这个:

SELECT *
FROM employees
WHERE 1=1
  AND DateDiff(day,  interestingDate , hirdDate ) >14

-- 哎呀 - 那是 Sql Serrver - 对此感到抱歉!这是在 Oracle 9i 及更高版本中执行此操作的一种方法。我喜欢显式的 numtodsinterval 函数,因为很明显您正在寻找天差:

select *
from employees
WHEERE 1=1
  AND numtodsinterval(interestingDate- hiredDate,'day')>14;

干杯,

丹尼尔

Try this:

SELECT *
FROM employees
WHERE 1=1
  AND DateDiff(day,  interestingDate , hirdDate ) >14

-- 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:

select *
from employees
WHEERE 1=1
  AND numtodsinterval(interestingDate- hiredDate,'day')>14;

Cheers,

Daniel

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文