Additional 'A' to existing data -- please help,Urgent !

  • Thread starter Thread starter shiro
  • Start date Start date
S

shiro

Hi All,
I have around 19000 records in my table.And there
is a text field that I want to add a letter 'A' to the
end of existing data.I want to add to all of them,how
to do it quickly.Thank's.

Rgds,

Shiro.
 
Dear Shiro,

First make a backup of your database.
Then create the following query to update all of your records:

UPDATE Table1 SET Table1.yourfield = [Table1]![yourfield] & "A";

where Table1 is your table name and yourfield is the name of your field

Good luck

GeorgeCY

Ο χÏήστης "shiro" έγγÏαψε:
 
Many thank's Mr George,
I will try it.
Have a nice day.


George said:
Dear Shiro,

First make a backup of your database.
Then create the following query to update all of your records:

UPDATE Table1 SET Table1.yourfield = [Table1]![yourfield] & "A";

where Table1 is your table name and yourfield is the name of your field

Good luck

GeorgeCY

? ??????? "shiro" ???????:
Hi All,
I have around 19000 records in my table.And there
is a text field that I want to add a letter 'A' to the
end of existing data.I want to add to all of them,how
to do it quickly.Thank's.

Rgds,

Shiro.
 

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