What is DAYOFMONTH() in SQL?

The DAYOFMONTH() function returns what day of the month it is from a date sent as a parameter.

Figure 1 shows a visual representation of the DAYOFMONTH() function.

Figure 1: Visual representation of DAYOFMONTH() function

Syntax

DAYOFMONTH(date)

Parameter

The DAYOFMONTH() function takes the date as a parameter.

The date must be in the format YYYY-MM-DD, or else this function returns NULL.

Return value

The DAYOFMONTH() function returns the day of the month from a date sent as a parameter.

It returns NULL if the date is invalid.

Code

-- current date
SELECT DAYOFMONTH(NOW());
-- invalid month
SELECT DAYOFMONTH('2021-13-12');
-- valid month/day
SELECT DAYOFMONTH('2021-05-03');
-- invalid day
SELECT DAYOFMONTH('2021-2-30');
New on Educative
Learn to Code
Learn any Language as a beginner
Develop a human edge in an AI powered world and learn to code with AI from our beginner friendly catalog
🏆 Leaderboard
Daily Coding Challenge
Solve a new coding challenge every day and climb the leaderboard

Free Resources