MySQL SYSDATE() Function
ExampleGet your own SQL Server
Return the current date and time:
SELECT SYSDATE();
Try it Yourself »
Definition and Usage
The SYSDATE() function returns the current date and time.
Note: The date and time is returned as "YYYY-MM-DD HH:MM:SS" (string) or as YYYYMMDDHHMMSS (numeric).
Syntax
SYSDATE()
Technical Details
Works in: | From MySQL 4.0 |
---|