Open In App

DAYOFMONTH() Function in MySQL

DAYOFMONTH() function :
This function in MySQL is used to return the day of the month for a specified date (a number from 1 to 31). This function equals the DAY() function.

Syntax :



DAYOFMONTH(date)

Parameter :
This method accepts a parameter which is illustrated below as follows.

Returns :
It returns the day of the month for a specified date (a number from 1 to 31).



Example-1 :
Getting the day of the month from a specified date “2020-11-24”.

SELECT DAYOFMONTH("2020-11-24");  

Output :

24

Example-2 :
Getting the day of the month from a specified date “2020-11-22 07:12:23”.

SELECT DAYOFMONTH("2020-11-22 07:12:23");  

Output :

22

Example-3 :
Getting the day of the month for the current system date.

SELECT DAYOFMONTH(CURDATE());

Output :

24

Application :
This function is used to return the day of the month for a specified date (a number from 1 to 31).

Article Tags :
SQL