日期计算(SQL、Oracle 10g)

发布于 2024-08-25 07:47:22 字数 51 浏览 3 评论 0原文

对于五年前制造的产品,如何计算自产品制造以来的年数(四舍五入到小数点后 1 位)?谢谢。

How do I calculate number of years since product was made (rounded to 1 decimal point) for products that were made less than five years ago? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我一向站在原地 2024-09-01 07:47:22

现在不在 IDE 前面,所以我的语法可能有点偏离,但类似的东西应该可以工作(假设一个名为 table1 的表和一个名为 date1 的字段)...

select round((Months_between(current_date,date1)/12),1) as years 
from table1 where date1 > add_months(current_date,-60)

Not in front of an IDE right now so my syntax may be a little off but something like this should work (assuming a table named table1 with a field named date1) ...

select round((Months_between(current_date,date1)/12),1) as years 
from table1 where date1 > add_months(current_date,-60)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文