locate:
LOCATE(substr,str)
POSITION(substr IN str)
返回子串 substr 在字符串 str 中第一次出现的位置。如果子串 substr 在 str 中不存在,返回值为 0:
substring
SUBSTR(str,pos,len): 由<str>中的第<pos>位置开始,选出接下去的<len>个字元。
replace
replace(str1, str2, str3): 在字串 str1 中,当 str2 出现时,将其以 str3 替代。
update 表名set 数字串列=replace(数字串列,SUBSTRING(数字串列,len(数字串列)-2,2),Char(cast(SUBSTRING(数字串列,len(数字串列)-2,2) as int)+Ascii('A')-1))
where cast(SUBSTRING(数字串列,len(数字串列)-2,2) as int)<=26
--倒数第二三位大于26
update 表名
set 数字串列=replace(数字串列,SUBSTRING(数字串列,len(数字串列)-2,2),'Z')
where cast(SUBSTRING(数字串列,len(数字串列)-2,2) as int)>26
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)