从出生日期和今天计算 Oracle 年龄

Oracle Age calculation from Date of birth and Today(从出生日期和今天计算 Oracle 年龄)
本文介绍了从出生日期和今天计算 Oracle 年龄的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的 Oracle 函数中从出生日期计算当前年龄.

I want to calculate the current Age from Date of Birth in my Oracle function.

我使用的是 (Today-Dob)/30/12,但这并不准确,因为有些月份有 31 天.

What I am using is (Today-Dob)/30/12, but this is not accurate as some months have 31 days.

我需要以最大的精度获得正确的年龄.我怎样才能做到这一点?

I need to get the correct age with the maximum precision. How can I do that?

推荐答案

SQL> select trunc(months_between(sysdate,dob)/12) year,
  2         trunc(mod(months_between(sysdate,dob),12)) month,
  3         trunc(sysdate-add_months(dob,trunc(months_between(sysdate,dob)/12)*12+trunc(mod(months_between(sysdate,dob),12)))) day
  4  from (Select to_date('15122000','DDMMYYYY') dob from dual);

      YEAR      MONTH        DAY
---------- ---------- ----------
         9          5         26

SQL>

这篇关于从出生日期和今天计算 Oracle 年龄的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)