问题重现:
MySql 数据库中,一给列的内容中包含 “.wmv” 须要将 “.” 后的wmv格式 换为“flv”
解决的方法
update video_info set file_path=substring(file_path,1,length(file_path)-3);
先运行以上SQL进行删除;
update video_info set file_path = concat(file_path,‘flv‘);
再运行这条语句把flv加入到后面。
时间: 2024-10-03 16:31:57