Blogger Information
Blog 27
fans 0
comment 0
visits 22411
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库建表 - 0321作业
不乖的博客
Original
632 people have browsed it
/*
Navicat MySQL Data Transfer

Source Server         : 本地
Source Server Version : 50553
Source Host           : 127.0.0.1:3306
Source Database       : ouyangke

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

Date: 2019-03-22 09:54:17
*/

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(50) NOT NULL COMMENT '姓名',
  `age` tinyint(3) NOT NULL DEFAULT '1' COMMENT '年龄',
  `sex` varchar(50) NOT NULL COMMENT '性别',
  `hobby` varchar(255) NOT NULL COMMENT '爱好',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('2', '阿护', '32', '男', '爱好般若');
INSERT INTO `user` VALUES ('3', '般若', '28', '女', '太师');
INSERT INTO `user` VALUES ('4', '明玉', '28', '女', '赚钱');
INSERT INTO `user` VALUES ('5', '苏明成', '32', '男', '啃老,打***');
INSERT INTO `user` VALUES ('6', '苏明哲', '37', '男', '打肿脸充胖子');


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