问题重现:
MySql 数据库中,一给列的内容中包含 “.wmv” 须要将 “.” 后的wmv格式 换为“flv”
解决的方法
update video_info set file_path=substring(file_path,1,length(file_path)-3);
update video_info set file_path = concat(file_path,‘flv‘);
原文:http://www.cnblogs.com/yutingliuyl/p/6867782.html