Blogger Information
Blog 24
fans 0
comment 0
visits 21842
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
创建表
Technical的博客
Original
895 people have browsed it
DROP TABLE IF EXISTS `tp_cate`;
CREATE TABLE `tp_cate` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '分类ID',  `pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '上级分类ID',  `catename` varchar(50) NOT NULL COMMENT '分类名称',  `sort` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
  PRIMARY KEY (`id`),  UNIQUE KEY `name` (`catename`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='分类表';


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post