Now

Summary

The Now function returns the current UTC date time stamp.

Syntax

Now()

Return Type

Instant

Details

The timestamp reflects the current UTC date and time.

Examples

select Now() as Now_is_UTC,
CurDateTime() as CurDateTime_is_Pacific,
CurDate() as CurDate_is_Pacific,
TodayUTC() as TodayUTC_is_UTC,
Today() as Today_is_Pacific
from Empty();

Screen Shot 2016-09-07 at 11.32.23 AM

Related Functions

CurDate

CurDateTime

Now 

TodayUTC