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. Syntaxselect sysdate(); ReturnsThis function returns the system date. Example 1select sysdate(); Output: Example 2select sysdate()+2; Output:
Next TopicMySQL datetime
|