zoukankan      html  css  js  c++  java
  • ORACLE中函数MONTHS_BETWEEN的使用

    格式:MONTHS_BETWEEN(DATE1,DATE2)
    
    MONTHS_BETWEEN函数返回两个日期之间的月份数。
    SQL> select months_between(to_date('20090228', 'yyyymmdd'), to_date('20080228', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
            12
    
    SQL> select months_between(to_date('20090228', 'yyyymmdd'), to_date('20080229', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
            12
    
    SQL> select months_between(to_date('20080229', 'yyyymmdd'), to_date('20070228', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
            12
    
    SQL> select months_between(to_date('20100331', 'yyyymmdd'), to_date('20100228', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
             1
    
    SQL> select months_between(to_date('20100228', 'yyyymmdd'), to_date('20100128', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
             1
    
    SQL> select months_between(to_date('20100327', 'yyyymmdd'), to_date('20100228', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
    .967741935
    
    SQL> select months_between(to_date('20100330', 'yyyymmdd'), to_date('20100228', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
    1.06451613
    
    SQL> select months_between(to_date('20100228', 'yyyymmdd'), to_date('20100130', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
    .935483871
    
    SQL> select months_between(to_date('20100228', 'yyyymmdd'), to_date('20100131', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
             1
    
    SQL> select months_between(to_date('20100228', 'yyyymmdd'), to_date('20100127', 'yyyymmdd')) as months from dual;
    
        MONTHS
    ----------
    1.03225806
    
    30/31=0.96774193548387096774193548387097
    33/31=1.0645161290322580645161290322581
    29/31=0.93548387096774193548387096774194
    32/31=1.032258064516129032258064516129
    在ORACLE中计算月份的差值,都是月底或是日期相同,都会按整月计算。
    如果计算结果不是整数,ORACLE会把31作为分母来计算。
  • 相关阅读:
    解决吞吐性能问题时的思路
    mysql left join转inner join
    TypeScript 在开发应用中的实践总结
    antd+react项目迁移vite的解决方案
    客官,.NETCore无代码侵入的模型验证了解下
    v-html可能导致的问题
    IDA反汇编EXE添加一个启动时的消息框
    OD反汇编EXE添加一个启动时的消息框
    Vue中的三种Watcher
    React中diff算法的理解
  • 原文地址:https://www.cnblogs.com/pumushan/p/6655204.html
Copyright © 2011-2022 走看看