백엔드 개발 PHP 튜토리얼 求一条sql话语。

求一条sql话语。

Jun 13, 2016 am 10:35 AM
default NOT null

求一条sql语句。。
想了半天,也没个头绪不知道该怎么写。
我要查询DISCUZ X2.0的三个表,分别是pre_forum_thread,pre_forum_attachment索引表,pre_forum_attachment_n的子表

SQL code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->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 ;
로그인 후 복사


pre_forum_attachment结构如下:
SQL code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->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 ;
로그인 후 복사


pre_forum_attachment_n子表结构如下
SQL code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->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;<div class="clear">
                 
              
              
        
            </div>
로그인 후 복사
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

뜨거운 기사 태그

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

정의되지 않음과 null은 무엇을 의미하나요? 정의되지 않음과 null은 무엇을 의미하나요? Nov 20, 2023 pm 02:39 PM

정의되지 않음과 null은 무엇을 의미하나요?

C 언어에서 null과 NULL의 차이점은 무엇입니까? C 언어에서 null과 NULL의 차이점은 무엇입니까? Sep 22, 2023 am 11:48 AM

C 언어에서 null과 NULL의 차이점은 무엇입니까?

null 및 정의되지 않음을 사용해야 하는 경우 null 및 정의되지 않음을 사용해야 하는 경우 Nov 13, 2023 pm 02:11 PM

null 및 정의되지 않음을 사용해야 하는 경우

null과 정의되지 않은 것의 차이점은 무엇입니까 null과 정의되지 않은 것의 차이점은 무엇입니까 Nov 08, 2023 pm 04:43 PM

null과 정의되지 않은 것의 차이점은 무엇입니까

기본 게이트웨이를 구성하는 방법 기본 게이트웨이를 구성하는 방법 Dec 07, 2023 am 11:34 AM

기본 게이트웨이를 구성하는 방법

기본 게이트웨이 구성 기본 게이트웨이 구성 Dec 07, 2023 pm 03:02 PM

기본 게이트웨이 구성

기본 게이트웨이를 구성하는 방법 기본 게이트웨이를 구성하는 방법 Dec 07, 2023 pm 02:56 PM

기본 게이트웨이를 구성하는 방법

Java 키워드에 'default'가 포함되어 있습니까? Java 키워드에 'default'가 포함되어 있습니까? Apr 23, 2023 pm 01:13 PM

Java 키워드에 'default'가 포함되어 있습니까?

See all articles