You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a phone number is formatted like 1112223333, then we want it to be 111-222-3333.
update locations set phone = regexp_replace(phone, '(\d{3})(\d{3})(\d{4})', '\1-\2-\3') where phone !~ '[^0-9]+' and length(phone)=10 and country='US';