stemitch2000
Programmer
Please can somebody tell me the difference in these two pieces of code - and then tell me how to fix the first one?
UPDATE projects SET Size="Unestimated" WHERE Size = NULL
UPDATE projects SET StartDate = ArrivalDate WHERE StartDate = NULL
The second one work fine. The first doesn't. Size is a text field, and StartDate is a date field.
UPDATE projects SET Size="Unestimated" WHERE Size = NULL
UPDATE projects SET StartDate = ArrivalDate WHERE StartDate = NULL
The second one work fine. The first doesn't. Size is a text field, and StartDate is a date field.