VeloDB Cloud
SQL Manual
Functions
date-time-functions
now

now

Description

Syntax:

DATETIME NOW ()

This function fetches the current time and returns it in DATETIME type.

Example

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].

example

mysql> select now(3);
+-------------------------+
| now(3)                  |
+-------------------------+
| 2022-09-06 16:13:30.078 |
+-------------------------+

Note:

  1. Currently, only DatetimeV2 type supports precision.
  2. Limited by the JDK implementation, if you use jdk8 to build FE, the precision can be up to milliseconds (three decimal places), and the larger precision bits will be filled with 0. If you need higher accuracy, please use jdk11 to build FE.

Keywords

NOW