Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add 9 To Phone Number Field

Status
Not open for further replies.

surfbum3000

Technical User
Aug 22, 2003
156
US
I have a table with a field for the phone number
tblCaseNos.HOME_PHONE

The phone number is 10 digits long. I need to add the number 9 in front of each number in the database.
 
I tried this and it did not work:

UPDATE tblCaseNos SET tblCaseNos.HOME_PHONE = "9" & [HOME_PHONE]
 
Please ignore the last post. The code worked.
UPDATE tblCaseNos SET tblCaseNos.HOME_PHONE = "9" & [HOME_PHONE]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top