mysql将表中一个字段的数据截取后更新到另一个字段

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

截取其中的字符更新
update zuixin_index set name = case when locate('《',title) <> 0 then substring(title,locate('《',title)+1, locate('》',title)-locate('《',title)-1) when locate('.',title) <> 0 then substring(title,1, locate('.',title)) when locate(' ',title) <> 0 then substring(title,1, locate(' ',title)) else title end;


替换掉其中的字符更新
update recommend_tvseries set content = replace(content,substring(content,locate('',content),locate('',content)-locate('',content)),'')  where content like '%播放%';

转载于:https://my.oschina.net/zhangmaoyuan/blog/1606272

你可能感兴趣的:(数据库,python,java)