add a zero to the end of a 5 digit #

  • Thread starter Thread starter Rick Oakley
  • Start date Start date
R

Rick Oakley

I have a field that is 5 digits (numerical) long. I need
to add a zero to the end of all the 15,000 + entries. Any
way to do this???
 
I have a field that is 5 digits (numerical) long. I need
to add a zero to the end of all the 15,000 + entries. Any
way to do this???

In a Select query:
ZeroAdded:[FieldName]*10

To permanently change the field data:
Update TableName Set TableName.FieldName = FieldName*10;

12345 becomes 123450
 

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