08-07
29
利用sql批处理做SEO优化
作者:Java伴侣 日期:2008-07-29
dede_archives
id,title,body
要求:
查找title(标题)不以“【”开头的记录。
找到这些记录后,在标题最前面加入【你好北京】
继续增加条件
update dede_archives set title= concat('【你好北京】',title) where typeid=15 and id>7890 and title not like '【%';
恢复的SQL:
update dede_archives set title=stuff('title',charindex('【','title'),charindex('】','title'),'')
update dede_archives set title=right(title,len(title)-charindex('】',title))
update dede_archives set title=right(title,length(title)-locate('】',title)) and id=433
id,title,body
要求:
查找title(标题)不以“【”开头的记录。
找到这些记录后,在标题最前面加入【你好北京】
复制内容到剪贴板 程序代码
begin
start transaction;
update dede_archives set title= concat('【你好北京】',title) where typeid=43 and title not like '【%';
rollback;
end
start transaction;
update dede_archives set title= concat('【你好北京】',title) where typeid=43 and title not like '【%';
rollback;
end
继续增加条件
update dede_archives set title= concat('【你好北京】',title) where typeid=15 and id>7890 and title not like '【%';
恢复的SQL:
update dede_archives set title=stuff('title',charindex('【','title'),charindex('】','title'),'')
update dede_archives set title=right(title,len(title)-charindex('】',title))
update dede_archives set title=right(title,length(title)-locate('】',title)) and id=433
评论: 0 | 引用: 0 | 查看次数: 728
发表评论