CurDate
Summary
The CurDate
function returns the current date using the Pacific timezone.
Syntax
CurDate() |
Return Type
Date
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();
Related Functions