updating field

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

Guest

I have some data in a field with text type. I want to update some data in the
field basing on a criteria by adding text to existing field by using update
queries.For example suppose I have "rs" in the field . I want to add "D" to
the field then it becomes "rsD". pl. tell me how to do this? or which
functions should be used in the queries.
 
UPDATE YourTable SET [YourField] = [YourField] & 'D' WHERE YourField =
'YourCondition'
 

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