省市县三级联动的sql语句 create table `t_address_province` (`id` int auto_increment primary key comment '主键',`code` char(6) not null comment '省份编码',`name` varchar(40) not null comment '省份名称') engine=innodb default charset=utf8 comment='省份信息表';create table `t_address_city` (`id` int auto_increment primary key comment '主键',`code` char(6) not null comment '城市编码',`name` varchar(40) not null comment '城市名称',`provincecode` char(6) not null comment '所属省份编码') engine=innodb default charset=utf8 comment='城市信息表';create table `t_address_town` (`id` int auto_increment primary key comment '主键',`code` char(6) not null comment '区县编码',`name` varchar(40) not null comment '区县名称',`citycode` char(6) not null comment '所属城市编码') engine=innodb default charset=utf8 comment='区县信息表';
