I\'m still learning my ropes with SQL Server and maybe this question sounds very naive/ridiculous. Please bear with me on this. :)
I saw a function in SQL Server defined
Actually it will work with the table column and do a replace for each row in your table. But it only work because the @InputString
variable is affected each time.
Maybe you could use a local temporary table to store your NonNumeric
Be carefull because you are returning a NVARCHAR value while @InputString
is a VARCHAR.