Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的查询中加入以下条件,但我不知道在 informix 中的正确语法来做到这一点。
他的工作日期至少过去了一年..
所以
我尝试这样的事情
b.work_date - CURRENT >= 12 -- 12 month
怎么做 ?
你需要小心这种CURRENT - 12 UNITS MONTH方法。它没有考虑到 2 月的闰日,Invalid day in date如果你在 2012-04-29 运行它会出现错误。
CURRENT - 12 UNITS MONTH
Invalid day in date
写起来更安全
b.work_date < TODAY - 365
你可以做:
b.work_date <= CURRENT - 12 UNITS MONTH