Karl,
I ran the update query that was in the SQL view. It updated the field
[05]. But when I went to delete the contents of [CY] from the table, the
values in [05] also was deleted. Is this because [05]=[CY]? Once I update
[05] with [CY], how do delete the contents of [CY], without losing the
contents of [05]?
KARL DEWEY said:
Sorry, that is not what I am looking for. Open your query in design view,
click on menu VIEW - SQL View. Highlight, copy, and paste in a post.
Kou Vang said:
It's at the bottom. But here it is again.
UPDATE Master SET Master.[05] = Master.[CY];
:
Post your query SQL statement.
:
When I run the SQL I just simply get the field back but it's the same,
completely blank? Both fields are the same.
:
What kind of error message do you get? Are both fields the same datatype?
:
How come when I try to update a field with another field from the same table,
it doesn't work? Exp:
SQL:
UPDATE Master SET Master.[05] = Master. [CY];
Is this not possible?