CURRENT_ DATE And CURDATE
On this page
Returns the current date.
Syntax
CURRENT_DATE()
CURDATE()
Return Type
Date object.
Remarks
CURDATE()
and CURRENT_
functions are synonyms to each other.YYY-MM-DD
(string) or YYYYMMDD
(numeric) format.
Examples
The following functions return the current date in string format.
SELECT CURRENT_DATE(), CURDATE();
+-------------------------------------------------------------+
| CURRENT_DATE() | CURDATE() |
+-------------------------------------------------------------+
| 2019-03-22 | 2019-03-22 |
+-------------------------------------------------------------+
Related Topics
Last modified: May 31, 2023