Today
Summary
The Today
function returns the current date value given the local Pacific date and time.
Syntax
Today() |
Return Type
Date
Details
Date value returned is based on the current date and time in the Pacific timezone.
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();