-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_gmap.sql
More file actions
35 lines (29 loc) · 1.11 KB
/
db_gmap.sql
File metadata and controls
35 lines (29 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50617
Source Host : localhost:3306
Source Database : db_gmap
Target Server Type : MYSQL
Target Server Version : 50617
File Encoding : 65001
Date: 2016-03-15 21:09:08
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `tbl_location`
-- ----------------------------
DROP TABLE IF EXISTS `tbl_location`;
CREATE TABLE `tbl_location` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`lat` varchar(50) NOT NULL,
`lng` varchar(50) NOT NULL,
`location_name` varchar(200) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tbl_location
-- ----------------------------
INSERT INTO `tbl_location` VALUES ('4', '16.08276411471161', '103.677978515625', 'ร้อยเอ็ด');
INSERT INTO `tbl_location` VALUES ('5', '16.05637148556169', '103.1671142578125', 'มหาสารคาม');
INSERT INTO `tbl_location` VALUES ('6', '15.056210365453422', '103.106689453125', 'บุรีรัมย์');