SQL como substituir o ponto final

SELECT REPLACE(REPLACE(REPLACE(`column_name`, ',', ''), '.', ''), '-', '') 
FROM `table_name`
Glamorous Gerenuk