Now

Date/Time Function

Description

Return a timestamp equivalent to the current time including time zone.

Click here to navigate to the Postgre docs page for this syntax.

The function Now() is translated to CURRENT_TIMESTAMP() in snowflake

Grammar Syntax

 NOW()

Sample Source Patterns

Postgre

SELECT
    now()
FROM
   Table1;

Snowflake

SELECT
    CURRENT_TIMESTAMP()
FROM
    Table1

Last updated