Syntax
SYSDATE(fsp)
Purpose
SYSDATE() returns the current date and time in the %Y-%m-%d %H.%i.%s format.
The fsp argument specifies the precision of the return value, which means the number of digits of the fractional part. Valid values are any integers ranging from 0 to 6. The default value is 0.
Examples
obclient> SELECT SYSDATE();
+---------------------+
| SYSDATE() |
+---------------------+
| 2021-07-15 14:10:06 |
+---------------------+
1 row in set