Answers for "sql how to replace full stop"

SQL
1

sql how to replace full stop

SELECT REPLACE(REPLACE(REPLACE(`column_name`, ',', ''), '.', ''), '-', '') 
FROM `table_name`
Posted by: Guest on February-01-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language