Blogger Information
Blog 12
fans 0
comment 4
visits 9569
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PDO数据库结构数据
温度的博客
Original
997 people have browsed it
/*
Navicat MySQL Data Transfer

Source Server         : localhost
Source Server Version : 50553
Source Host           : localhost:3306
Source Database       : student

Target Server Type    : MYSQL
Target Server Version : 50553
File Encoding         : 65001

Date: 2019-03-25 15:44:50
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for stu_user
-- ----------------------------
DROP TABLE IF EXISTS `stu_user`;
CREATE TABLE `stu_user` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL COMMENT '名称',
  `password` varchar(32) NOT NULL COMMENT '密码',
  `age` tinyint(1) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL COMMENT '电子邮箱',
  `mobile` varchar(11) DEFAULT NULL COMMENT '手机',
  `sex` tinyint(1) DEFAULT NULL COMMENT '性别',
  `class` varchar(255) DEFAULT NULL COMMENT '班级',
  `status` tinyint(1) DEFAULT NULL COMMENT '状态',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of stu_user
-- ----------------------------
INSERT INTO `stu_user` VALUES ('1', '温度', '327122', '30', '2274597679@qq.com', '13931458554', '1', '高一二班', '1');
INSERT INTO `stu_user` VALUES ('2', '文毒', '18', '20', '252@qq.com', '25252525252', '1', '高二八班', '0');
INSERT INTO `stu_user` VALUES ('3', '胖胖', '18', '15', '325@163.com', '32532532532', '0', '高三十六班', '0');
INSERT INTO `stu_user` VALUES ('4', 'pdo', 'pdo123', '10', 'pdo@qq.com', '123456789', '1', 'php第五期', '1');
INSERT INTO `stu_user` VALUES ('6', 'pdo', 'pdo123', '10', 'pdo@qq.com', '123456789', '1', 'php第五期', '1');
INSERT INTO `stu_user` VALUES ('7', 'pdo', 'pdo123', '10', 'pdo@qq.com', '123456789', '1', 'php第五期', '1');
INSERT INTO `stu_user` VALUES ('8', 'pdo', 'pdo123', '10', 'pdo@qq.com', '123456789', '1', 'php第五期', '1');
INSERT INTO `stu_user` VALUES ('9', 'pdo', 'pdo123', '10', 'pdo@qq.com', '123456789', '1', 'php第五期', '1');
INSERT INTO `stu_user` VALUES ('10', 'pdo', 'pdo123', '10', 'pdo@qq.com', '123456789', '1', 'php第五期', '1');
INSERT INTO `stu_user` VALUES ('15', 'hewenlu', '327122', '18', '2274597679@qq.com', '252', '1', '双桥', '1');


Correction status:Uncorrected

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