Dapatkan Bulan Tanggal SQL

-- Using MONTH() and GETDATE() function to fetch current month
SELECT MONTH(getdate()) AS "Present Month";

-- Using DATEPART() function and GETDATE() function
SELECT DATEPART(MONTH, GETDATE()) as "Present Month Of the Year";

-- Getting the name of the current month
SELECT FORMAT(GETDATE(),'MMMM') AS Month;
CoderHomie