top of page
CerebroSQL

DAYOFMONTH

База данных: MySQL

68747470733a2f2f7374796c65732e7265646469746d656469612e636f6d2f74355f32716d366b2f7374796c65

Syntax:
DAYOFMONTH(date)

Returns the day of the month for date, in the range 1 to 31, or 0 for
dates such as '0000-00-00' or '2008-00-00' that have a zero day part.

Example

mysql> SELECT DAYOFMONTH('2007-02-03');
-> 3

bottom of page