Help Please

soleed

Registered User.
Local time
Today, 06:18
Joined
Aug 17, 2005
Messages
11
Update Query Help please

hi,
I Have a tabel with this fields ( Name , Compagny , Phone)
in The Phone all phone numbers are like this follows
+9613430619
And i need to change all records ( 6000 Record) To replace the 3 with 71
so any one can help how i can do this
 
Last edited:
You will need to create and update query with the criteria "+%%%3*" and the update as "+%%%71*"

Should work for you.
 
JVermast said:
You will need to create and update query with the criteria "+%%%3*" and the update as "+%%%71*"

Should work for you.
when i do this query he tell me u will update 0 records

UPDATE Contacts SET Contacts.MobilePhone = "+%%%71*"
WHERE (((Contacts.MobilePhone) Like "+%%%3*")) ;
 

Users who are viewing this thread

Back
Top Bottom