2024-11-26 06:34:53
使用替换函数就可以了
UPDATE `tablename` SET html = REPLACE ( html, '<b>', '' );
replace(object, search,replace)
把object中出现search的全部替换为replaceselect replace('www','w','Ww')--->WwWwWw
2024-11-26 05:59:39
这个可以通过replace替换来实现,把<b>替换成空。
SELECT mark,REPLACE(mark,'<b>','')FROM test
2024-11-26 06:42:03
2024-11-26 03:59:31
2024-11-26 02:29:21