SQL statement to update date
1 answer
Dates are not strings, but one of the following will result in a date:
DATE [Table] SET `Birthdate` = CDate('1993-08-02 00:00:00.0') WHERE `ID` = 000
(see documentation for CDate )
DATE [Table] SET `Birthdate` = #08/02/1993# WHERE `ID` = 000
+3
a source to share