I am using SQL Server 2008
I transferred some data from MySql; Data migration was successful, but some values ββcontain data with periods and commas.
What is the best way to remove these characters from my data?
in sql server you can use REPLACE to delete data and STUFF to add data
in the following way
replace('Your String','charater you want to replace','with what') stuff('Your String',position,count,'data')
In SQL SERVER, you can use REPLACE.
SELECT REPLACE(REPLACE('abc,123.456', ',', ''), '.', '')