Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
DAY
On this page
The DAY() function extracts the day of the month from the given datetime.
Syntax
DAY ( dateobj )Arguments
-
dateobj: a valid date, datetime, or parsable date string.
Return Type
Integer
Examples
SELECT DAY('2009-02-13');
+-------------------+
| DAY('2009-02-13') |
+-------------------+
| 13 |
+-------------------+Last modified: