REPLACE() 函数直接替换mysql数据库中某字段中的特定字符串
用法: REPLACE(字段, 要查找的字符串, 要替换的字符串)
update sly_news
set litpic = REPLACE(litpic, '/Public', '') WHERE id = '';
实例: 把litpic字段中的 /Public 替换为 /uplods
update `sly_news` set `litpic` = REPLACE(`litpic`, '/Public', '/uploads') WHERE id = 76;