修改mysql数据库的字符串替换
表table1中有B列数据和A列数据,要把B列数据替换成汉字加上A列数据例如:表table1中的'B列数据'替换成'我是'+'A列数据'+'非常棒的'当id小于55时的所...
表 table1中有B列数据和A列数据,要把B列数据替换成汉字加上A列数据
例如:表 table1 中的 'B列数据' 替换成 '我是' + 'A列数据' + '非常棒的' 当id小于55时的所有都替换 展开
例如:表 table1 中的 'B列数据' 替换成 '我是' + 'A列数据' + '非常棒的' 当id小于55时的所有都替换 展开
2个回答
展开全部
您好,update mt2 set name = replace(name, substring(name, locate('<contact>', name),locate('</contact>', name)-locate('<contact>'+10, name)),'');
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 替代。
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 替代。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询