Find an SQL statement.

Source: Internet
Author: User
Find an SQL statement .. After thinking for a long time, I have no idea how to write it. I want to query the three tables in DISCUZX2.0, which are pre_forum_thread, pre_forum_attachment index table, and sqlcodecreatetablefn, the subtable of pre_forum_attachment_n, to find an SQL statement ..
After thinking for a long time, I have no idea how to write it.
I want to query the three tables in DISCUZ X2.0: pre_forum_thread, pre_forum_attachment index table, and pre_forum_attachment_n.
SQL code
  CREATE TABLE IF NOT EXISTS `pre_forum_thread` (  `tid` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,  `fid` mediumint(8) unsigned NOT NULL DEFAULT '0',  `posttableid` smallint(6) unsigned NOT NULL DEFAULT '0',  `typeid` smallint(6) unsigned NOT NULL DEFAULT '0',  `sortid` smallint(6) unsigned NOT NULL DEFAULT '0',  `readperm` tinyint(3) unsigned NOT NULL DEFAULT '0',  `price` smallint(6) NOT NULL DEFAULT '0',  `author` char(15) NOT NULL DEFAULT '',  `authorid` mediumint(8) unsigned NOT NULL DEFAULT '0',  `subject` char(80) NOT NULL DEFAULT '',  `dateline` int(10) unsigned NOT NULL DEFAULT '0',  `lastpost` int(10) unsigned NOT NULL DEFAULT '0',  `lastposter` char(15) NOT NULL DEFAULT '',  `views` int(10) unsigned NOT NULL DEFAULT '0',  `replies` mediumint(8) unsigned NOT NULL DEFAULT '0',  `displayorder` tinyint(1) NOT NULL DEFAULT '0',  `highlight` tinyint(1) NOT NULL DEFAULT '0',  `digest` tinyint(1) NOT NULL DEFAULT '0',  `rate` tinyint(1) NOT NULL DEFAULT '0',  `special` tinyint(1) NOT NULL DEFAULT '0',  `attachment` tinyint(1) NOT NULL DEFAULT '0',  `moderated` tinyint(1) NOT NULL DEFAULT '0',  `closed` mediumint(8) unsigned NOT NULL DEFAULT '0',  `stickreply` tinyint(1) unsigned NOT NULL DEFAULT '0',  `recommends` smallint(6) NOT NULL DEFAULT '0',  `recommend_add` smallint(6) NOT NULL DEFAULT '0',  `recommend_sub` smallint(6) NOT NULL DEFAULT '0',  `heats` int(10) unsigned NOT NULL DEFAULT '0',  `status` smallint(6) unsigned NOT NULL DEFAULT '0',  `isgroup` tinyint(1) NOT NULL DEFAULT '0',  `favtimes` mediumint(8) NOT NULL DEFAULT '0',  `sharetimes` mediumint(8) NOT NULL DEFAULT '0',  `stamp` tinyint(3) NOT NULL DEFAULT '-1',  `icon` tinyint(3) NOT NULL DEFAULT '-1',  `pushedaid` mediumint(8) NOT NULL DEFAULT '0',  `cover` smallint(6) NOT NULL DEFAULT '0',  `replycredit` smallint(6) NOT NULL DEFAULT '0',  PRIMARY KEY (`tid`),  KEY `digest` (`digest`),  KEY `sortid` (`sortid`),  KEY `displayorder` (`fid`,`displayorder`,`lastpost`),  KEY `typeid` (`fid`,`typeid`,`displayorder`,`lastpost`),  KEY `recommends` (`recommends`),  KEY `heats` (`heats`),  KEY `authorid` (`authorid`),  KEY `isgroup` (`isgroup`,`lastpost`),  KEY `special` (`special`)) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=380 ;


The pre_forum_attachment structure is as follows:
SQL code
  CREATE TABLE IF NOT EXISTS `pre_forum_attachment` (  `aid` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,  `tid` mediumint(8) unsigned NOT NULL DEFAULT '0',  `pid` int(10) unsigned NOT NULL DEFAULT '0',  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0',  `tableid` tinyint(1) unsigned NOT NULL DEFAULT '0',  `downloads` mediumint(8) NOT NULL DEFAULT '0',  PRIMARY KEY (`aid`),  KEY `tid` (`tid`),  KEY `pid` (`pid`),  KEY `uid` (`uid`)) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=110 ;


The structure of the pre_forum_attachment_n sub-table is as follows:
SQL code
  CREATE TABLE IF NOT EXISTS `pre_forum_attachment_0` (  `aid` mediumint(8) unsigned NOT NULL,  `tid` mediumint(8) unsigned NOT NULL DEFAULT '0',  `pid` int(10) unsigned NOT NULL DEFAULT '0',  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0',  `dateline` int(10) unsigned NOT NULL DEFAULT '0',  `filename` varchar(255) NOT NULL DEFAULT '',  `filesize` int(10) unsigned NOT NULL DEFAULT '0',  `attachment` varchar(255) NOT NULL DEFAULT '',  `remote` tinyint(1) unsigned NOT NULL DEFAULT '0',  `description` varchar(255) NOT NULL,  `readperm` tinyint(3) unsigned NOT NULL DEFAULT '0',  `price` smallint(6) unsigned NOT NULL DEFAULT '0',  `isimage` tinyint(1) NOT NULL DEFAULT '0',  `width` smallint(6) unsigned NOT NULL DEFAULT '0',  `thumb` tinyint(1) unsigned NOT NULL DEFAULT '0',  `picid` mediumint(8) NOT NULL DEFAULT '0',  PRIMARY KEY (`aid`),  KEY `tid` (`tid`),  KEY `pid` (`pid`),  KEY `uid` (`uid`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.