mysql批量替换或删除某字段前的内容

日期:2022-03-15 03:56:16 人气:1

mysql批量替换或删除某字段前的内容

update yourtable set col_url = substr(col_url,locate('/download/',col_url)) where col_url is not null and locate('/download/',col_url)>=1
--这里yourtable就是你的表名,col_url是你这个列的字
    A+
热门评论