Basic Responsys SQL date functions
in Responsys
Listing below basic SQL date functions that are supported by Responsys.
It maybe helpful to many, since not all common date functions are supported in Responsys SQL.
CREATED_DATE_ is same as today
TRUNC(CREATED_DATE_) = TRUNC(current_date)
CREATED_DATE_ is same as yesterday
TRUNC(CREATED_DATE_) = TRUNC(current_date -1)
0