SQL Substitua o caractere em string em todos os registros

UPDATE employees 
SET 
    phone_number = REPLACE(phone_number, '.', '-');
Coding Cobra