1. 程式人生 > >sql怎麼批量替換欄位裡的字串

sql怎麼批量替換欄位裡的字串

update [表名] set 欄位名 = replace(與前面一樣的欄位名,'原本內容','想要替換成什麼')
update dede_archives set title = replace(title,'免費領取','0.1元領取')