mysql.sql

来自「在综合英文版XOOPS 2.09, 2.091, 2.092 的基础上正式发布X」· SQL 代码 · 共 35 行

SQL
35
字号
# phpMyAdmin MySQL-Dump
# version 2.2.2
# http://phpwizard.net/phpMyAdmin/
# http://phpmyadmin.sourceforge.net/ (download page)
#
# --------------------------------------------------------

#
# Table structure for table `seccont`
#

CREATE TABLE seccont (
  artid int(11) NOT NULL auto_increment,
  secid int(11) NOT NULL default '0',
  title text NOT NULL,
  content text NOT NULL,
  counter int(11) NOT NULL default '0',
  PRIMARY KEY  (artid),
  KEY idxseccontsecid (secid),
  KEY idxseccontcounterdesc (counter)
) TYPE=MyISAM;
# --------------------------------------------------------

#
# Table structure for table `sections`
#

CREATE TABLE sections (
  secid int(11) NOT NULL auto_increment,
  secname varchar(40) NOT NULL default '',
  image varchar(50) NOT NULL default '',
  PRIMARY KEY  (secid),
  KEY idxsectionssecname (secname)
) TYPE=MyISAM;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?