Blogger Information
Blog 3
fans 0
comment 0
visits 2228
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Mysql数据库基础建立表格
枫叶De小窝
Original
711 people have browsed it
/*
Navicat MySQL Data Transfer

Source Server         : 本地
Source Server Version : 50553
Source Host           : localhost:3306
Source Database       : feifei

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

Date: 2019-03-20 23:37:15
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for vip
-- ----------------------------
DROP TABLE IF EXISTS `vip`;
CREATE TABLE `vip` (
  `id` int(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '这个是会员ID号',
  `name` varchar(21) NOT NULL COMMENT '这个是用户名',
  `age` int(3) unsigned NOT NULL COMMENT '这个是年龄',
  `sex` varchar(3) NOT NULL COMMENT '性别',
  `phone` int(11) NOT NULL COMMENT '电话',
  `email` varchar(100) NOT NULL COMMENT '邮箱',
  `address` varchar(200) NOT NULL COMMENT '地址',
  `zipcode` tinyint(6) unsigned NOT NULL COMMENT '邮编',
  `post` varchar(30) NOT NULL COMMENT '职务',
  `director` varchar(30) NOT NULL COMMENT '负责人',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of vip
-- ----------------------------
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