DATETIME NOW ()
Get the current time and return it in Datetime type.
mysql> select now(); +---------------------+ | now() | +---------------------+ | 2019-05-27 15:58:25 | +---------------------+
DATETIMEV2 NOW(INT precision)
Get the current time and return it in DatetimeV2 type. Precision represents the second precision that the user wants. The current precision supports up to microseconds, that is, the value range of precision is [0, 6].
mysql> select now(3); +-------------------------+ | now(3) | +-------------------------+ | 2022-09-06 16:13:30.078 | +-------------------------+
Note:
NOW