SQL mengganti karakter dalam string di semua catatan

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