D
daver676
Hello All!
I am using SQL to format the dates in my MS Access tables
from YYMMDD to MMDDYYYY. However there is a problem. When
converting a date value of 880105, my DateSerial returns
09/05/154. Also, when converting 000000, DateSerial
returns 11/30/1999, when it should return 1/1/00, right?
Here is my SQL code:
UPDATE ICVEND SET ICVEND.LastDateRcvd = DateSerial(Left
([LastDateRcvd],2),Mid([LastDateRcv
d],2,3),Right([LastDateRcvd],2));
What is the problem?
Thanks
Dave
I am using SQL to format the dates in my MS Access tables
from YYMMDD to MMDDYYYY. However there is a problem. When
converting a date value of 880105, my DateSerial returns
09/05/154. Also, when converting 000000, DateSerial
returns 11/30/1999, when it should return 1/1/00, right?
Here is my SQL code:
UPDATE ICVEND SET ICVEND.LastDateRcvd = DateSerial(Left
([LastDateRcvd],2),Mid([LastDateRcv
d],2,3),Right([LastDateRcvd],2));
What is the problem?
Thanks
Dave