Hi, it might be useful (or not) to know that you can also concatenate in a batch update. just include in the update SQL:
UPDATE tablename SET a2 = a2 & 'scost';
and execute the command and every record in tablename will be updated.
If you keep running this command though, you will end up with scostscostscost...etc on the end of the a2 value :-)
Quote:
quote:Originally posted by [email protected]
is it possible to use something like the following to append text to a field instead of overwriting.
.Edit
!a2 = scost
.Update
I would like to add "scost" to what ever might be there seperated by ~
eg
sretail~scost
in field a2
many thanks
|