Blogger Information
Blog 19
fans 0
comment 0
visits 13138
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
MYSQL数据库作业—2019年3月20号22:00
倪偌卟離
Original
730 people have browsed it

/*

Navicat MySQL Data Transfer


Source Server         : 我的数据库

Source Server Version : 50553

Source Host           : localhost:3306

Source Database       : xuexi


Target Server Type    : MYSQL

Target Server Version : 50553

File Encoding         : 65001


Date: 2019-03-21 16:05:45

*/


SET FOREIGN_KEY_CHECKS=0;


-- ----------------------------

-- Table structure for user

-- ----------------------------

DROP TABLE IF EXISTS `user`;

CREATE TABLE `user` (

  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',

  `name` varchar(55) NOT NULL COMMENT '姓名',

  `level` tinyint(2) NOT NULL COMMENT '账号等级',

  `nick_Name` varchar(55) NOT NULL COMMENT '昵称',

  `mem_HomePage` varchar(255) NOT NULL COMMENT '个人主页',

  `mem_IP` varchar(255) NOT NULL COMMENT '登录IP地址',

  `qq` int(65) NOT NULL COMMENT '用户QQ',

  `phone` varchar(255) NOT NULL COMMENT '手机号',

  `email` varchar(255) NOT NULL COMMENT '邮箱',

  `brief_Introduction` varchar(255) NOT NULL COMMENT '简介',

  PRIMARY KEY (`id`)

) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;


-- ----------------------------

-- Records of user

-- ----------------------------

INSERT INTO `user` VALUES ('1', '张三 ', '5', '小张', 'www.baidu.com', '127.0.0.1', '123456789', '123456789022222222222', '123@qq.com', '我是张三!叫我小张就行了。');

INSERT INTO `user` VALUES ('2', '李四', '5', '小李', 'www.baidu.com', '127.0.0.1', '123456789', '123456789022222222222', '123@qq.com', '我是李四!叫我小李就行了。');


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!