Home > Database > Mysql Tutorial > 中国城市坐标SQL代码

中国城市坐标SQL代码

WBOY
Release: 2016-06-07 14:58:02
Original
2619 people have browsed it

中国城市坐标SQL代码 MySQL CREATE TABLE `test_data` ( `id` varchar(50) NOT NULL default '', `province` varchar(100) NOT NULL COMMENT '省级', `city` varchar(100) NOT NULL COMMENT '城市', `county` varchar(100) NOT NULL, `longitude` varchar(20)

中国城市坐标SQL代码 MySQL
CREATE TABLE `test_data` (
  `id` varchar(50) NOT NULL default '',
  `province` varchar(100) NOT NULL COMMENT '省级',
  `city` varchar(100) NOT NULL COMMENT '城市',
  `county` varchar(100) NOT NULL,
  `longitude` varchar(20) NOT NULL,
  `latitude` varchar(20) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

具体代码下载附件
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template