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();