Calculate the Last Day of the Month for Any Given Date

Calculate the Last Day of the Month for Any Given Date

The following code calculates the last day of the month for any given date:

Description: Calculates the last day of the month for any given date*/CREATE FUNCTION [dbo].[ufn_GetLastDayOfMonth](   @inpuDate SMALLDATETIME)RETURNS INT AS BEGIN    DECLARE @endDate SMALLDATETIME   DECLARE @tempDate SMALLDATETIME   -- caluclates end date of the month    SET @tempDate = DateAdd(Month, 1, @inpuDate)   SET @endDate = DateAdd(DAY, -1,    Cast(Cast(Month(@tempDate)As varchar(2))     + '-1-' + Cast(Year(@tempDate)As varchar(4)) As DateTime))   RETURN DATEPART(DAY, @endDate)END 
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular