If you want to do it to the whole table:
UPDATE myTable
SET SITE = "2201" & SITE
....but if you only want to do it to a single record, or a specific set of
records:
UPDATE myTable
SET SITE = "2201" & SITE
WHERE x = y
Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
---------------------------
"pokdbz" <(E-Mail Removed)> wrote in message
news:27A5E7CA-AED3-4D25-ABF9-(E-Mail Removed)...
>I have a field "SITE" that I need to append "2201" in the front of what is
> already in the field. How can this be done using a query?
|