Update a field in a table with a field in the same table

K

Kou Vang

The question is how to: Update a field in a table with a field in the same
table
 
D

Duane Hookom

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;
 
K

Kou Vang

Update Tablename (Field1) Values (Field2)

Is this the SQL? Or what I put in the UPDATE condition?
 
D

Duane Hookom

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?
 
Top