搞seo的时候,采集了一批文章,都是同一个时间,想随机一下看着真实一点。
show me the code,执行sql如下:
原理是修改为当前时间随机减去一定的秒数,rand旁边就是秒数
36002430*3代表3个月,这批文章的时间就会改成3个月内随机分布
update wp_posts set |
需要注意的是,我这里没有加where条件,如果你随机一部分文章,需要加where条件。
其他评论也可以按照类似的方式修改。
update kaifatu_article_23 set
addtime=DATE_ADD( now(), INTERVAL -FLOOR(1 + (RAND() * 3600*24*30*6)) SECOND ) ,
edittime=addtime,
post_modified=post_date,
post_modified_gmt=post_date
UPDATE `wp_posts`
SET `post_status` ='publish' WHERE (`post_status`='pending');
UPDATE kaifatu_com_article SET `ip` = 'ip' WHERE itemid>=1 and itemid<=99;
update kaifatu_com_article set addtime=FLOOR(UNIX_TIMESTAMP('2011-06-19 00:00:00')-46800 + RAND() * (15552000)) where itemid>=1 and itemid<=99;
update kaifatu_com_article set edittime=FLOOR(UNIX_TIMESTAMP('2011-09-19 00:00:00')-46800 + RAND() * (15552000)) where itemid>=1 and itemid<=99;