目录

MySQL CURDATE() Function

❮ MySQL Functions

Example

Return the current date:

SELECT CURDATE();
Try it Yourself »

Definition and Usage

The CURDATE() function returns the current date.

Note: The date is returned as "YYYY-MM-DD" (string) or as YYYYMMDD (numeric).

Note: This function equals the CURRENT_DATE() function.

Syntax

CURDATE()

Technical Details

Works in: From MySQL 4.0

More Examples

Example

Return the current date + 1:

SELECT CURDATE() + 1;
Try it Yourself »

❮ MySQL Functions