forked from 527515025/springBoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperson.sql
More file actions
35 lines (29 loc) · 990 Bytes
/
person.sql
File metadata and controls
35 lines (29 loc) · 990 Bytes
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 : 50538
Source Host : localhost:3306
Source Database : cache
Target Server Type : MYSQL
Target Server Version : 50538
File Encoding : 65001
Date: 2017-08-04 18:33:09
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for person
-- ----------------------------
DROP TABLE IF EXISTS `person`;
CREATE TABLE `person` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of person
-- ----------------------------
INSERT INTO `person` VALUES ('1', 'abel', '23', 'shanghai');
INSERT INTO `person` VALUES ('2', 'admin', '23', 'shanghai');
INSERT INTO `person` VALUES ('3', 'admin', '23', 'shanghai');