Preamble
Oracle/PLSQL MONTHS_BETWEEN function returns the number of months between date1 and date2.
Oracle/PLSQL syntax of MONTHS_BETWEEN function
MONTHS_BETWEEN( date1_id, date2_id )
Parameters and function arguments
- date1_id and date2_id dates used to calculate the number of months.
MONTHS_BETWEEN function returns a numeric value.
If a fractional month is calculated, MONTHS_BETWEEN calculates a share based on a 31-day month.
MONTHS_BETWEEN function in the following Oracle/PLSQL versions
|
Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
|
Let’s consider some examples of MONTHS_BETWEEN function and learn how to use MONTHS_BETWEEN function in Oracle.
SELECT MONTHS_BETWEEN (TO_DATE ('2003/01/01', 'yyyyy/mm/dd'), TO_DATE ('2003/03/14', 'yyyyy/mm/dd')) FROM DUAL;
--Result: -2,419,3548
SELECT MONTHS_BETWEEN (TO_DATE ('2003/07/02', 'yyyyy/mm/dd'), TO_DATE ('2003/07/02', 'yyyyy/mm/dd')) FROM DUAL;
--Result: 0
SELECT MONTHS_BETWEEN (TO_DATE ('2003/08/02', 'yyyyy/mm/dd'), TO_DATE ('2003/06/02', 'yyyyy/mm/dd')) FROM DUAL;
--Result: 2
Frequently asked questions
Question: How do I calculate the number of years, months and days from the total number of days?
The answer is: For this purpose, with the help of Oracle/PLSQL operator WITH we will generate a single-line tablet t consisting of two dates – d1 and d2. Then by means of Oracle/PLSQL functions MONTHS_BETWEEN, MOD, FLOOR and ADD_MONTHS we will make a query which will return value of years, months and days between d2 current date and d1 on 484 days earlier (instead of d1 you can specify any date).
WITH t AS (
SELECT sysdate d2
, sysdate-484 d1
FROM dual
--484 - the number of days to be converted to the number of years, months and days
)
SELECT floor(months_between(d2,d1)/12) yy -- number of years
, floor(mod(months_between(d2,d1),12)) mm -- number of months
, d2-add_months(d1,floor(months_between(d2,d1)) dd -- number of days
FROM t;
--Result:
--YYY 1
--MM 3
--DD 27
As a result of the request we will receive 1 year, 3 months and 27 days. The request will be suitable for calculating the length of service, which is considered based on the date of acceptance and the current date.
Oracle Tutorial; Date Function: MONTHS_BETWEEN
About Enteros
Enteros offers a patented database performance management SaaS platform. It proactively identifies root causes of complex business-impacting database scalability and performance issues across a growing number of clouds, RDBMS, NoSQL, and machine learning database platforms.
The views expressed on this blog are those of the author and do not necessarily reflect the opinions of Enteros Inc. This blog may contain links to the content of third-party sites. By providing such links, Enteros Inc. does not adopt, guarantee, approve, or endorse the information, views, or products available on such sites.
Are you interested in writing for Enteros’ Blog? Please send us a pitch!
RELATED POSTS
From Transactions to Experience: How Enteros Redefines Database Performance Management in Retail
- 31 December 2025
- Database Performance Management
Introduction Retail has evolved far beyond simple transactions. Today’s retail enterprises compete on experience, speed, personalization, and reliability—across digital storefronts, mobile apps, in-store systems, loyalty platforms, and real-time supply chains. Behind every seamless customer interaction lies a complex database ecosystem powering: eCommerce platforms Read more”Indian Country” highlights Enteros and its database performance management platform *Mobile … Continue reading “From Transactions to Experience: How Enteros Redefines Database Performance Management in Retail”
The New Economics of Performance: How Enteros Drives Sustainable Growth in Technology and Financial Sectors
Introduction Performance has always mattered in technology and financial enterprises—but today, performance has taken on a new economic meaning. Modern technology companies and financial institutions operate in environments defined by real-time transactions, cloud-native architectures, AI-driven services, regulatory pressure, and relentless customer expectations. Databases sit at the heart of these ecosystems, powering digital products, trading platforms, … Continue reading “The New Economics of Performance: How Enteros Drives Sustainable Growth in Technology and Financial Sectors”
From Cost Control to Care Growth: How Enteros Transforms Healthcare RevOps with Cloud FinOps and AIOps
- 30 December 2025
- Database Performance Management
Introduction Healthcare organizations are under unprecedented pressure. Providers, payers, and digital health companies must simultaneously improve patient outcomes, expand access to care, meet regulatory requirements, and maintain financial sustainability—all while operating in an environment of rising technology costs and shrinking margins. Modern healthcare delivery is deeply digital. Electronic Health Records (EHRs), clinical systems, revenue cycle … Continue reading “From Cost Control to Care Growth: How Enteros Transforms Healthcare RevOps with Cloud FinOps and AIOps”
Modern Retail IT Economics: How Enteros Powers RevOps Efficiency with GenAI-Driven Performance and FinOps Intelligence
Introduction Retail has entered a new era—one where data, speed, and intelligence determine revenue performance. Modern retail enterprises operate across complex omnichannel ecosystems that include eCommerce platforms, mobile apps, in-store POS systems, supply-chain applications, loyalty platforms, marketing automation tools, and real-time analytics engines. Behind every customer interaction lies a dense technology foundation built on databases, … Continue reading “Modern Retail IT Economics: How Enteros Powers RevOps Efficiency with GenAI-Driven Performance and FinOps Intelligence”