MySQL批量替换指定字段字符串语句 UPDATE 数据表名 SET 字段名 = replace(字段名, '要替换的字符串', '替换为') WHERE 设定条件;如将Wordpress文章中的“搜索引擎优化”全部替换成“搜索引擎营销”,替换语句为:UPDATE wp_posts SET post_content = replace(post_content, '搜索引擎优化', '...
mysql 数据库 列表中的字段前如何批量添加指定字符?
update dede_arctype set typedir = '{cmspath}/City/' || typedir;2013-08-06
MySQL批量替换指定字段字符串语句
UPDATE 数据表名 SET 字段名 = replace(字段名, '要替换的字符串', '替换为') WHERE 设定条件;
如将Wordpress文章中的“搜索引擎优化”全部替换成“搜索引擎营销”,替换语句为:
UPDATE wp_posts SET post_content = replace(post_content, '搜索引擎优化', '搜索引擎营销');
语句中还可以加入替换条件,如只替换限定ID小于200的内容:
UPDATE wp_posts SET post_content = replace(post_content, '搜索引擎优化', '搜索引擎营销') WHERE ID < 200;2015-08-05
declare the_typedir char(20);
declare the_id int;
SELECT id into the_id FROM dede_arctype WHERE typedir NOT LIKE “{cmspath%”;
SELECT typedir into the_typedir FROM dede_arctype WHERE id=the_id;
set the_typedir=concat('{cmspath}/City/ ', the_typedir);
update dede_arctype set typedir=the_typedir where id=the_id;2013-08-06