I have a table like this :
|----------------------------|
| CardCorporateName |
|----------------------------|
| ~$%/*dfgdggf/*( |
|--------------------- |
| ^^&@~`58964sdhfdk-+*/-=-0 |
|----------------------------|
I need to remove the special character from the column CardCorporateName and my Output should be like this :
|----------------------------|
| CardCorporateName |
|----------------------------|
| dfgdggf |
|----------------------------|
| 58964sdhfdk |
|----------------------------|
Is there any method to remove the special character from the column using recursive CTE method?