-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.sql
More file actions
28 lines (26 loc) · 867 Bytes
/
contact.sql
File metadata and controls
28 lines (26 loc) · 867 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
/*
MySQL Data Transfer
Source Host: localhost
Source Database: vf
Target Host: localhost
Target Database: vf
Date: 2014/2/17 13:52:07
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for contact
-- ----------------------------
CREATE TABLE `contact` (
`ID` varchar(36) NOT NULL DEFAULT '',
`NAME` varchar(100) DEFAULT NULL,
`SEX` smallint(6) DEFAULT NULL,
`AGE` smallint(6) DEFAULT NULL,
`TEL` varchar(20) DEFAULT NULL,
`COMMENT` varchar(200) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `contact` VALUES ('40288059443dd5f401443dd6d11a0002', 'XXXX', '11', '26', '010-27364237', 'Hello!');
INSERT INTO `contact` VALUES ('40288059443dd5f401443dd6ec210003', 'XXXX', '11', '26', '010-27364237', 'Hello!');