当前位置:首页 > CMS教程 > DeDecms > 列表

dedecms中常用的数据表操作SQL语句

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-12 13:31:36 浏览: 评论:0 

本文章总结了几乎所有常用的dedecms数据表中记录的操作sql语句,包括有删除,审核,批量修改等等.

删除所有注册会员,代码如下:

  1. DELETE FROM `#@__member` WHERE `#@__member`.`mid`!= 1; 
  2. TRUNCATE TABLE `#@__member_flink`;  
  3. TRUNCATE TABLE `#@__member_person`; 

批量修改栏目为动态,代码如下:

UPDATE `#@__arctype` SET `isdefault` = '-1'

批量删除文章,代码如下:

  1. DELETE FROM #@__addonarticle WHERE aid>0; 
  2. DELETE FROM #@__arctiny WHERE id>0; 
  3. DELETE FROM #@__archives WHERE id>0; 

批量修改文章为动态显示,代码如下:

update #@__archives set ismake=-1;

批量修改文章为静态显示,代码如下:

update #@__archives set ismake=1;

批量删除所有内容为空文章,代码如下:

  1. DELETE FROM #@__arctiny where id in(select aid from #@__addonarticle where body=''); 
  2. DELETE FROM #@__archives where id in(select aid from #@__addonarticle where body=''); 
  3. DELETE FROM #@__addonarticle where body=''

批量删除标题为空的文章,代码如下:

  1. DELETE FROM #@__addonarticle where aid in(select id from #@__archives where title=''); 
  2. DELETE FROM #@__arctiny where id in(select id from #@__archives where title=''); 
  3. DELETE FROM #@__archives where where title=''

批量审核文档,代码如下:

  1. Update `#@__arctiny` set arcrank='0' where arcrank='-1'
  2. Update `#@__archives` set arcrank='0' where arcrank='-1'

批量删除未审核的文档,代码如下:

  1. DELETE FROM #@__addonarticle where aid in(select id from #@__arctiny where arcrank='-1'); 
  2. DELETE FROM `#@__arctiny` where arcrank='-1'
  3. DELETE FROM `#@__archives` where arcrank='-1'
  4. TRUNCATE TABLE `#@__member_space`;  
  5. TRUNCATE TABLE `#@__member_tj`; 

Tags: 数据表 操作SQL语句

分享到: