G
Guest
I have a table with 2 fields. Field1 has date and Field2 info. If Field1 is
NULL, I would like to populate it using the value from the table itself. I
have written an update query as follows. When I run it, it tells me that the
query is not updateable. How do I accomplish the task?
UPDATE test SET test.dt = (SELECT First([test].[dt]) AS Fdt FROM test HAVING
(((First(test.dt)) Is Not Null)))
WHERE (((test.dt) Is Null));
Thank you
NULL, I would like to populate it using the value from the table itself. I
have written an update query as follows. When I run it, it tells me that the
query is not updateable. How do I accomplish the task?
UPDATE test SET test.dt = (SELECT First([test].[dt]) AS Fdt FROM test HAVING
(((First(test.dt)) Is Not Null)))
WHERE (((test.dt) Is Null));
Thank you