T
tolson11
Guest
I'm trying to create what I believe should be a simple update query, but I'm having some difficulties. What I'm trying to do is copy a value from one row in a table to another row in the same table. Here's an example of the syntax that I used...
UPDATE Table1 SET Field1 = (SELECT Field1 FROM Table1 WHERE Field2 = 1) WHERE Field2 = 2
Can anyone tell me what I'm doing wrong here? Thanks.
UPDATE Table1 SET Field1 = (SELECT Field1 FROM Table1 WHERE Field2 = 1) WHERE Field2 = 2
Can anyone tell me what I'm doing wrong here? Thanks.