Dec 18, 2018 04:38 AM
I get an error when I use DATEADD with a date I formated in another field with DATETIME_FORMAT. Is there a way to “unformat” a date?
Dec 19, 2018 05:07 AM
DATETIME_FORMAT() returns a string, so you can’t use then DATEADD(). You can:
DATETIME_FORMAT()
DATEADD()
DATETIME_PARSE()