MONTHS_BETWEEN with to_date function : MONTHS_BETWEEN « Date Timezone « Oracle PL / SQL






MONTHS_BETWEEN with to_date function

  
SQL>
SQL> SELECT MONTHS_BETWEEN(TO_DATE('22SEP2006','ddMONyyyy'),
  2    TO_DATE('13OCT2001','ddMONyyyy')) "Months difference"
  3  FROM dual;

Months difference
-----------------
       59.2903226

SQL>
SQL>
SQL>

           
         
    
  








Related examples in the same category

1.Experimenting with MONTHS_BETWEEN
2.MONTHS_BETWEEN: number of months between two dates
3.MONTHS_BETWEEN(x, y): get the number of months between x and y.
4.MONTHS_BETWEEN: Returned result is a negative number of months
5.MONTHS_BETWEEN(SYSDATE, last_stock_date)
6.ROUND(MONTHS_BETWEEN(SYSDATE, last_stock_date),0)
7.select months_between( sysdate, date'1971-05-18' )
8.select months_between( sysdate, date'2001-01-01' )
9.Combine Months_between, to_date, to_char together
10.Count the months between now and hired date