Day

sql

FUNCTION Day(IN dt DATE) RETURNS INT;

Parameters

dt date

Description

The Day function extracts day from the specified date.

Function value

This function returns number designating the day in a month, this number ranges from 1 to 31. You may also you the general EXTRACT function in SQL.


See