Wrox Home  
Search P2P Archive for: Go

  Return to Index  

access thread: Addition of information


Message #1 by "KennethMungwira" <KennethMungwira@Y...> on Wed, 29 Aug 2001 19:59:55
If you have appended information into a table but forgot to a field how to 

you update, or append more information from another table but referencing 

it with information already entered.
Message #2 by Brian Skelton <brian.skelton@b...> on Wed, 29 Aug 2001 22:09:34 +0100
You need to run an update query. Itll look something like the following:



UPDATE Table_new INNER JOIN Table_old ON Table_new.UniqueID = 

Table_old.UniqueID SET Table_new.FieldToUpdate = [Table_old]!

[FieldToUpdate]



(replace as appropriate!)




  Return to Index