A general SQL date/time function that returns the current date.
Synopsis
CURRENT_DATE
Description
CURRENT_DATE takes no arguments and returns the date as type DATE. CURRENT_DATE can be used as a default specification.
Example
This example shows how CURRENT_DATE can be used in a SELECT statement to return all records of employees who have a birthday today:
SELECT * FROM Employees 
     WHERE dob = CURRENT_DATE
See Also
CURDATE CURRENT_TIME CURRENT_TIMESTAMP CURTIME NOW