-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.sql
More file actions
36 lines (30 loc) · 1001 Bytes
/
test.sql
File metadata and controls
36 lines (30 loc) · 1001 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
36
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50527
Source Host : localhost:3306
Source Database : test
Target Server Type : MYSQL
Target Server Version : 50527
File Encoding : 65001
Date: 2016-11-28 21:15:48
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `user`
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`_Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userName` varchar(255) NOT NULL,
`passWord` varchar(255) NOT NULL,
PRIMARY KEY (`_Id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', 'adc', 'abc');
INSERT INTO `user` VALUES ('2', 'aaaa', 'bbbb');
INSERT INTO `user` VALUES ('3', 'abc', 'abc');
INSERT INTO `user` VALUES ('4', '你好', '我的');
INSERT INTO `user` VALUES ('5', '大大ss大', '阿女啊xxs');