dedecms如何批量修改文章发布时间。 1、首先是SQL语句: update dede_archives set pubdate= 1308240000 where id=1 and id=10; update dede_archives set senddate= 1405382400 where id=1 and id=10; 解释一下上面两行代码,功能就是...
本文主要以示例讲解织梦dedecms如何通过sql语句批量删除文章 示例:批量删除 aid1000-aid2000 的文章 DELETE FROM dede_addonarticle WHERE aid = 1000 and aid=2000; DELETE FROM dede_arctiny WHERE id = 1000 and id=2000; DELETE...