資料庫設計
1,資料庫設計
CREATE TABLE `global_region` (
? `region_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
? `parent_id` smallint(5) unsigned NOT NULL DEFAULT '0',
? `region_name` varchar(120 ) NOT NULL DEFAULT '',
? `region_type` tinyint(1) NOT NULL DEFAULT '2',
? PRIMARY KEY (`region_id `),
? KEY `parent_id` (`parent_id`),
? KEY `region_type` (`region_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
資料表如下: