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!