mysql 替換函數replace()實現mysql 替換字符串
mysql 替換字符串的實現方法:
mysql中replace函數直接替換mysql數據庫中某字段中的特定字符串,再也不須要本身寫函數去替換,用起來很是的方便。 mysql 替換函數replace()
UPDATE `table_name` SET `field_name` = replace (`field_name`,'from_str','to_str') WHERE `field_name` LIKE '%from_str%'
說明:
table_name —— 表的名字
field_name —— 字段名
from_str —— 須要替換的字符串
to_str —— 替換成的字符串
例如:
mysql> SELECT REPLACE('www.k686.com', 'www', 'http://www'); 把www.k686.com裏面的www換成http://www
-> 'http://www.k686.com'
該函數是多字節安全的,也就是說你不用考慮是中文字符仍是英文字符.
實例
UPDATE `mo_maintable` SET
`title` = replace (`title`,'銘萬CMS','愛站CMS'),
`subtitle` = replace (`subtitle`,'銘萬CMS','愛站CMS'),
`keywords` = replace (`keywords`,'銘萬CMS','愛站CMS'),
`description` = replace (`description`,'銘萬CMS','愛站CMS');
UPDATE `mo_maintable` SET
`title` = replace (`title`,'銘萬 CMS','愛站CMS'),
`subtitle` = replace (`subtitle`,'銘萬 CMS','愛站CMS'),
`keywords` = replace (`keywords`,'銘萬 CMS','愛站CMS'),
`description` = replace (`description`,'銘萬 CMS','愛站CMS');
UPDATE `mo_article` SET
`content` = replace (`content`,'銘萬CMS','愛站CMS');
UPDATE `mo_article` SET
`content` = replace (`content`,'銘萬 CMS','愛站CMS');