Add data to the left of existing data in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to add data to multiple records in specific fields but I need to add
it just to the beginning of the field and keep all the existing data that is
already in the field. I know there must be a simple solution....I just don't
know what it is.
 
Try this SQL UPDATE statement:

UPDATE theTable
SET theField='Newly added data in front of existing' + theField
WHERE <If you need update condition...>
 
Where do you want to do this?

In a Control on a Form? Subform? Query?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top