MONTHS_BETWEEN: Returned result is a negative number of months : MONTHS_BETWEEN « Date Timezone « Oracle PL / SQL






MONTHS_BETWEEN: Returned result is a negative number of months

  
SQL>
SQL> SELECT MONTHS_BETWEEN('15-JAN-2005', '25-MAY-2005') FROM dual;

MONTHS_BETWEEN('15-JAN-2005','25-MAY-2005')
-------------------------------------------
                                 -4.3225806

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 with to_date function
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