Does REPLACE function in SQL Server accept input from a table for 'string_pattern' parameter?

后端 未结 5 1462
清酒与你
清酒与你 2021-01-25 08:55

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

5条回答
  •  一个人的身影
    2021-01-25 09:21

    Replace accepts the table column, and in this case it will do exactly what you expect it to do. It will do iterations on @InputString variable and exclude all non numeric characters that appear in the NonNumeric table and in the @InputString variable.

提交回复
热议问题