工序有很多道,你是想去除A1-,A1这些字符串是吧
可以用
REPLACE ( string_expression , string_pattern , string_replacement )
参数:
①string_expression是原字符串。 string_expression 可以是字符或二进制数据类型 。
②string_pattern是要查找的子字符串(指定字符串值)。 string_pattern 可以是字符或二进制数据类型 。 string_pattern 不能为空字符串 (''),不能超过页容纳的最大字节数 。
③string_replacement是替换字符串(另一个字符串值)。 string_replacement 可以是字符或二进制数据类型
比如 replace('abc','c','8') ='ab8'
多嵌套几次就行了,比如replace(replace('abc','c','8'),'b','7')