Solved Update Telephone No

Number11

Member
Local time
Today, 19:45
Joined
Jan 29, 2020
Messages
623
I need to change some telephone numbers entered with a 44 prefix and then once done add a new prefix of zero

so best to trim the first two numbers?
 
Maybe use an UPDATE action SQL. Are all telephone numbers the same number of characters? They won't be after this edit.

UPDATE table SET field = "0" & Mid(field, 3) WHERE Left(field, 2) = "44";
 
Last edited:
are your fields numbers or strings?
 

Users who are viewing this thread

Back
Top Bottom