TodayUTC

Summary

Use the TodayUTC function to return today’s date given the current UTC date and time.

Syntax

TodayUTC()

Return Type

Date

Details

The returned date is derived from 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 12.45.27 PM

Related Functions

CurDate

CurDateTime

Now

Today