非常实用的一个操作,我们做网站测试的时候经常用到, 批量修改文章发布时间 。 1、SQL语句 update dede_archives set pubdate= 1308240000 where id=1 and id=10; update dede_archives set senddate= 1335542400 where id=1 and id=10; 说明:上面两行代码
1、SQL语句
update dede_archives set pubdate= 1308240000 where id>=1 and id<=10;
update dede_archives set senddate= 1335542400 where id>=1 and id<=10;
说明:上面两行代码,功能就是把ID号从1到10的文章发布日期由2011年6月17日修改到2012年4月28日。
其中“pubdate= 1308240000 ”和“senddate= 1335542400” 中的数字为“” 这个把日期转换成时间戳的地址,大家到
http://tool.chinaz.com/Tools/unixtime.aspx去转换。
2、执行SQL命令
后台->系统->SQL命令行工具