Skip to content

Commit 653c3bb

Browse files
author
single
committed
dml
1 parent 288ccc0 commit 653c3bb

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
Navicat MySQL Data Transfer
3+
4+
Source Server : localhost
5+
Source Server Version : 80013
6+
Source Host : localhost:3306
7+
Source Database : test
8+
9+
Target Server Type : MYSQL
10+
Target Server Version : 80013
11+
File Encoding : 65001
12+
13+
Date: 2019-02-21 18:03:57
14+
*/
15+
16+
SET FOREIGN_KEY_CHECKS=0;
17+
18+
-- ----------------------------
19+
-- Table structure for person
20+
-- ----------------------------
21+
DROP TABLE IF EXISTS `person`;
22+
CREATE TABLE `person` (
23+
`id` int(11) NOT NULL,
24+
`name` varchar(16) NOT NULL,
25+
`age` int(11) DEFAULT NULL,
26+
`phone` varchar(11) DEFAULT NULL,
27+
`address` varchar(256) DEFAULT NULL,
28+
PRIMARY KEY (`id`)
29+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
30+
31+
-- ----------------------------
32+
-- Records of person
33+
-- ----------------------------
34+
INSERT INTO `person` VALUES ('1', 'yang', '22', '231232132', '中国上海');
35+
INSERT INTO `person` VALUES ('2', 'cao', null, null, '浙江杭州');
36+
INSERT INTO `person` VALUES ('3', 'li', '23', '34567894', '江苏南京');
37+
INSERT INTO `person` VALUES ('4', 'huang', '33', '34567894', '湖北武汉');
38+
INSERT INTO `person` VALUES ('5', 'zhang', '30', '4567890', '中国北京');
39+
INSERT INTO `person` VALUES ('6', 'yang', '24', '2343435353', '山东青岛');
Binary file not shown.

0 commit comments

Comments
 (0)