EOMONTH

The EOMONTH function in SQL Server is used to return the last day of the month for a given date. This function is particularly useful when working with date-based calculations, such as determining the end of a reporting period or the last day of the current or previous months.

Syntax

EOMONTH(start_date [, month_to_add])

start_date: The starting date from which the function will calculate the end of the month.
month_to_add (optional): An integer value representing the number of months to add to the start_date. This can be positive (for future months) or negative (for past months). If this parameter is not provided, it defaults to 0, meaning the function will return the end of the month for the given start_date.

Example

Bsic example: To get the last day of the month for a specific date:

SELECT EOMONTH('2024-09-07') AS EndOfMonth;

This will return: 2024-09-30

Using the month_to_add Argument: If you want to calculate the last day of the month for a date 2 months in the future:

SELECT EOMONTH('2024-09-07', 2) AS EndOfMonth;

This will return: 2024-11-30

Getting the Last Day of the Previous Month: To get the last day of the previous month, you can pass -1 as the second argument:

SELECT EOMONTH('2024-09-07', -1) AS EndOfMonth;

This will return: 2024-08-31

Additional Considerations

When using the EOMONTH function with other date-related operations, ensure that the data types of the involved expressions are compatible (e.g., both should be of type DATE, DATETIME, or DATETIME2).

If you need to calculate the last day of a quarter or year, you can use the EOMONTH function in conjunction with appropriate date calculations to determine the relevant month.

For more complex date calculations, you can combine the EOMONTH function with other date functions like DATEADD, DATEDIFF, and DATEPART.

Benefits of using EOMONTH function

Simplicity: It eliminates the need for complex date manipulations or manual calculations.

Efficiency: The function is optimized for SQL Server and performs date calculations directly.

Practical Use Cases

Financial Reporting: Easily find the end of a month to calculate monthly revenues or expenses.

Billing Cycles: Calculate due dates or the end of a subscription period.

Quarterly Calculations: By using EOMONTH, determining the end of each quarter becomes straightforward.

In summary, the EOMONTH function is a powerful and simple tool in SQL Server for handling month-end calculations, making it easier to work with date and time data.