Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 帖子的tid能重置吗

[复制链接]
a657472999 发表于 2016-6-8 11:10:51 | 显示全部楼层 |阅读模式
把数据库帖子清空了但是tid一直累加的能恢复到初识值1吗?




                                                                     www.sharebbs.cn
玉林同城 发表于 2016-7-24 11:13:37 | 显示全部楼层
测试一下可以的。改数据。
确认已删除全部主题
先清空
pre_forum_sofa
pre_forum_post





重建
pre_forum_post

  1. DROP TABLE IF EXISTS pre_forum_post;
  2. CREATE TABLE pre_forum_post (
  3.   pid int(10) unsigned NOT NULL,
  4.   fid mediumint(8) unsigned NOT NULL DEFAULT '0',
  5.   tid mediumint(8) unsigned NOT NULL DEFAULT '0',
  6.   `first` tinyint(1) NOT NULL DEFAULT '0',
  7.   author varchar(15) NOT NULL DEFAULT '',
  8.   authorid mediumint(8) unsigned NOT NULL DEFAULT '0',
  9.   `subject` varchar(80) NOT NULL DEFAULT '',
  10.   dateline int(10) unsigned NOT NULL DEFAULT '0',
  11.   message mediumtext NOT NULL,
  12.   useip varchar(15) NOT NULL DEFAULT '',
  13.   `port` smallint(6) unsigned NOT NULL DEFAULT '0',
  14.   invisible tinyint(1) NOT NULL DEFAULT '0',
  15.   anonymous tinyint(1) NOT NULL DEFAULT '0',
  16.   usesig tinyint(1) NOT NULL DEFAULT '0',
  17.   htmlon tinyint(1) NOT NULL DEFAULT '0',
  18.   bbcodeoff tinyint(1) NOT NULL DEFAULT '0',
  19.   smileyoff tinyint(1) NOT NULL DEFAULT '0',
  20.   parseurloff tinyint(1) NOT NULL DEFAULT '0',
  21.   attachment tinyint(1) NOT NULL DEFAULT '0',
  22.   rate smallint(6) NOT NULL DEFAULT '0',
  23.   ratetimes tinyint(3) unsigned NOT NULL DEFAULT '0',
  24.   `status` int(10) NOT NULL DEFAULT '0',
  25.   tags varchar(255) NOT NULL DEFAULT '0',
  26.   `comment` tinyint(1) NOT NULL DEFAULT '0',
  27.   replycredit int(10) NOT NULL DEFAULT '0',
  28.   position int(8) unsigned NOT NULL AUTO_INCREMENT,
  29.   PRIMARY KEY (tid,position),
  30.   UNIQUE KEY pid (pid),
  31.   KEY fid (fid),
  32.   KEY authorid (authorid,invisible),
  33.   KEY dateline (dateline),
  34.   KEY invisible (invisible),
  35.   KEY displayorder (tid,invisible,dateline),
  36.   KEY `first` (tid,`first`)
  37. ) ENGINE=MyISAM;
复制代码



再修改

pre_forum_thread的AUTO_INCREMENT值为1


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

magentoon 发表于 2016-7-24 11:21:29 | 显示全部楼层
在phpmyadmin中清空数据表,就是从1重新开始
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-22 13:46 , Processed in 0.023230 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表