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?
Page 1 / 1
DATETIME_FORMAT()
returns a string, so you can’t use then DATEADD()
. You can:
- Use the
DATEADD()
before theDATETIME_FORMAT()
- Use
DATETIME_PARSE()
to get back a date, and then use theDATEADD()
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.