Provide the date of the current day.
SELECT CURDATE(); |
The CURDATE() function retrieves the current date.
Please note that the date is provided in the format “YYYY-MM-DD” (string) or YYYYMMDD (numeric).
Additionally, note that this function is equivalent to the CURRENT_DATE() function.
CURDATE() |
Works in: |
From MySQL version 4.0 |
Provide the date that comes after the current date by one day.
SELECT CURDATE() + 1; |