C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL Date/Time Sysdate() FunctionThe sysdate() is a MySQL date/time function. It is used to get the system date. Syntax
select sysdate(); Returns
This function returns the system date. Example 1select sysdate(); Output:
Example 2
select sysdate()+2; Output:
Next TopicMySQL datetime
|