G Guest May 2, 2006 #2 The question is how to: Update a field in a table with a field in the same table
M [MVP] S.Clark May 2, 2006 #3 Update Tablename (Field1) Values (Field2) -- Steve Clark, Access MVP FMS, Inc http://www.fmsinc.com/consulting Professional Access Database Repair *FREE* Access Tips: http://www.fmsinc.com/free/tips.html
Update Tablename (Field1) Values (Field2) -- Steve Clark, Access MVP FMS, Inc http://www.fmsinc.com/consulting Professional Access Database Repair *FREE* Access Tips: http://www.fmsinc.com/free/tips.html
D Duane Hookom May 2, 2006 #4 It would have been nice if you would have taken the time to enter some sample records with table and field names. However, you can try UPDATE tblA SET FieldA = FieldB;
It would have been nice if you would have taken the time to enter some sample records with table and field names. However, you can try UPDATE tblA SET FieldA = FieldB;
G Guest May 5, 2006 #5 Update Tablename (Field1) Values (Field2) Is this the SQL? Or what I put in the UPDATE condition?
D Duane Hookom May 5, 2006 #6 Steve's SQL statement is most often used to update a single record. Is this what you want to do? Did you try my suggestion?
Steve's SQL statement is most often used to update a single record. Is this what you want to do? Did you try my suggestion?