true
if the first datetime is before the second datetime, otherwise returns false
.year
, month
, week
, isoWeek
, day
, hour
, minute
or second
DATETIME_IS_BEFORE("2011-10-10T12:13:14Z", "2011-10-09T12:13:14Z")
false
DATETIME_IS_BEFORE("2011-10-09T12:13:14Z", "2011-10-10T12:13:14Z")
true
DATETIME_IS_BEFORE("2011-10-10T12:13:14Z", "2011-10-10T12:13:14Z")
false
DATETIME_IS_BEFORE("2012-10-10T12:13:14Z", "2011-10-09T12:13:14Z", "year")
false