CurDateTime

Summary

The CurDateTime function returns the current Pacific timezone date and time.

Syntax

CurDateTime()

Return Type

DateTime

Details

Return value is based on the Pacific timezone 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.22.29 AM

Related Functions

CurDate

Now

Today