Find and Replace

  • Thread starter Thread starter Toan
  • Start date Start date
T

Toan

Hi all!

I have a database that keeps a record of how many payments
our collectors gets per day. They data that is entered
would look something like this...

CGE 1 6/16/04
BDM 5 6/16/04
CGE 4 6/17/04
BDM 2 6/17/04

Where the first column is the user's ID, the second is the
payment they got, and the third is the date.

One of our user recently got married and wants her name
change to BDE instead of BDM.

How can I change all of the BDM entries to BDE?

A thousand thanks in advance!
 
Hi!

Try an update query something like this:

update <table name>
set <name/user id> column = "BDE"
where <name/user id> column = "BDM"

Cheers!

Dave Venus
 

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